1. 501.
    0
    using system;
    using system. collections.generic;
    using system. linq;
    using system.web;
    using system.web.ui;
    using system.web.ui.webcontrols;

    public partial class kullanici_detay : system.web.ui.page
    {
    protected void page_load(object sender, eventargs e)
    {
    plh_yenikullanici. visible = false;
    plh_mevcutkullanici. visible = false;

    if (!page. ispostback)
    {
    if (profile. profiltamamlandimi)
    {
    txtbx_ad.text = profile.ad;
    txtbx_soyad. text = profile. soyad;
    txtbx_sokak. text = profile. adres.sokak;
    txtbx_postakodu. text = profile. adres.postakodu;
    txtbx_sehir. text = profile. adres.sehir;
    txtbx_ulke. text = profile. adres.ulke;
    plh_mevcutkullanici. visible = true;
    }
    else
    {
    plh_yenikullanici. visible = true;
    }
    }
    }

    protected void btn_kaydet_click(object sender, system. eventargs e)
    {
    page. validate();
    if (page. isvalid)
    {
    profile.ad = txtbx_ad.text;
    profile. soyad = txtbx_soyad. text;
    profile. adres.sokak = txtbx_sokak. text;
    profile. adres.postakodu = txtbx_postakodu. text;
    profile. adres.sehir = txtbx_sehir. text;
    profile. adres.ulke = txtbx_ulke. text;
    profile. profiltamamlandimi = true;
    if (yonet. sepet.sayim > 0)
    {
    response. redirect("~/market/siparis_ver. aspx");
    }
    else
    {
    response. redirect("~/");
    }
    }
    }

    }
    ···
   tümünü göster