public string[] Gonder_Personel_Bilgileri(string GelenID)
    {
        string[]   Personel = new string[7];
        SqlCommand comg     = new SqlCommand("select AdSoyad,TlfBox,IsTlfBox,CepBox,SehirID,IlceID,EpostaBox from E_Personel where UyeID=@ID", con);

        comg.Parameters.AddWithValue("@ID", GelenID);
        if (con.State == ConnectionState.Closed)
        {
            con.Open();
        }
        SqlDataReader dr = comg.ExecuteReader();

        if (dr.HasRows)
        {
            while (dr.Read())
            {
                Personel[0] = Ortak.Decrypt(dr["AdSoyad"].ToString());
                Personel[1] = Ortak.Decrypt(dr["TlfBox"].ToString());
                Personel[2] = Ortak.Decrypt(dr["IsTlfBox"].ToString());
                Personel[3] = Ortak.Decrypt(dr["CepBox"].ToString());
                Personel[4] = dr["SehirID"].ToString();
                Personel[5] = dr["IlceID"].ToString();
                Personel[6] = Ortak.Decrypt(dr["EpostaBox"].ToString());
            }
        }
        else
        {
            Personel[0] = "";
        }
        dr.Close();
        comg.Dispose();
        return(Personel);
    }
 public static List <string> SearchCustomers(string prefixText, int count)
 {
     using (SqlConnection conn = new SqlConnection(Yol.ECon))
     {
         using (SqlCommand cmd = new SqlCommand("select Log_Index,EPostaBox from E_Personel where IsActive=1 and Log_Index like '%" + prefixText + "%'", conn))
         {
             //  cmd.Parameters.AddWithValue("@SearchText", prefixText);
             if (conn.State == ConnectionState.Closed)
             {
                 conn.Open();
             }
             List <string> customers = new List <string>();
             using (SqlDataReader sdr = cmd.ExecuteReader())
             {
                 while (sdr.Read())
                 {
                     string Gidicek   = Ortak.Decrypt(sdr["EPostaBox"].ToString());
                     string Birlestir = sdr["Log_Index"].ToString() + "-" + Gidicek;
                     customers.Add(Birlestir);
                 }
             }
             conn.Close();
             return(customers);
         }
     }
 }
Example #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         if (Session["eticaret"] != null)
         {
             if (!IsPostBack)
             {
                 Label label = Master.FindControl("UrlMaplbl") as Label;
                 label.Text = "Resim Ekleme";
                 Label label2 = Master.FindControl("TepeMesajLbl") as Label;
                 label2.Text = "Ürün Resimleri Ekleme";
                 if (Request.QueryString["ID"] != null)
                 {
                     UrunListesi_ID = Ortak.Decrypt(Request.QueryString["ID"].ToString());
                     string[] Gel = RE.UrunDetay_UrunAdi_Dondur(UrunListesi_ID);
                     UrunAdiBox.Text = Gel[0].ToString();
                     Link            = Gel[1].ToString();
                     Resimler_Gel(UrunListesi_ID);
                 }
             }
         }
         else
         {
             Response.Redirect("Default.aspx", false);
         }
     }
     catch (Exception)
     {
         HataVar.Visible = true;
     }
 }
Example #4
0
 protected void EPostaListesi_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr       = e.Row.DataItem as DataRowView;
         Label       Durum    = (Label)e.Row.FindControl("DurumLbl");
         Label       Eposta   = (Label)e.Row.FindControl("lblEpostaAdresi");
         ImageButton Gitsin   = (ImageButton)e.Row.FindControl("EPostaGitsin");
         ImageButton Gitmesin = (ImageButton)e.Row.FindControl("EpostaGitmesin");
         Eposta.Text = Ortak.Decrypt(Eposta.Text.Trim());
         bool gidecek = Convert.ToBoolean(dr["Gidecek"]);
         if (gidecek == true)
         {
             Durum.Text      = "E-Bülten Gidiyor";
             Durum.ForeColor = System.Drawing.Color.Black;
             Durum.Font.Bold = true;
             Gitsin.Visible  = false;
         }
         else
         {
             Durum.Text       = "E-Bülten Gitmiyor";
             Durum.ForeColor  = System.Drawing.Color.Red;
             Durum.Font.Bold  = true;
             Gitmesin.Visible = false;
         }
     }
 }
Example #5
0
    public string[] Giris_Kontrol(string K, string S)
    {
        string[]   Git = new string[2];
        string     Ku  = Ortak.Encrypt(K);
        string     Si  = Ortak.Encrypt(S);
        SqlCommand com = new SqlCommand("select UyeID,AdSoyad from E_Personel where UyeID=(select UyeID from E_Uyeler where IsActive=1 and KullaniciAdi='" + Ku + "' and Pass='******')", con);

        if (con.State == ConnectionState.Closed)
        {
            con.Open();
        }
        SqlDataReader dr = com.ExecuteReader();

        if (dr.HasRows)
        {
            while (dr.Read())
            {
                Git[0] = dr["UyeID"].ToString();
                Git[1] = Ortak.Decrypt(dr["AdSoyad"].ToString());
            }
        }
        else
        {
            Git[0] = "";
        }
        dr.Close();
        com.Dispose();
        con.Close();
        return(Git);
    }
 protected void Iletisim_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr               = e.Row.DataItem as DataRowView;
         Label       Adi_soyadi       = e.Row.FindControl("lblMusteriAdi") as Label;
         Label       Adi_soyadi_Detay = e.Row.FindControl("lblMusteriAdi_detay") as Label;
         Label       E_posta          = e.Row.FindControl("lblMusteriEposta") as Label;
         Label       E_posta_Detay    = e.Row.FindControl("lblMusteriEposta_Detay") as Label;
         Label       CepTlf_Detay     = e.Row.FindControl("lblCepTlf") as Label;
         LinkButton  Kapat            = e.Row.FindControl("KapatBtn") as LinkButton;
         Adi_soyadi.Text       = Ortak.Decrypt(Adi_soyadi.Text);
         Adi_soyadi_Detay.Text = Adi_soyadi.Text;
         E_posta.Text          = Ortak.Decrypt(E_posta.Text);
         E_posta_Detay.Text    = E_posta.Text;
         CepTlf_Detay.Text     = Ortak.Decrypt(CepTlf_Detay.Text);
         bool Tukendi = Convert.ToBoolean(dr["Okundu"]);
         if (Tukendi == true)
         {
             Kapat.Enabled   = false;
             Kapat.Text      = "Bildirim Kapalı";
             Kapat.ForeColor = System.Drawing.Color.Black;
             Kapat.Font.Bold = true;
         }
     }
 }
Example #7
0
 private void GelBilgi()
 {
     try
     {
         string[] Gelen = g.GidenBilgi(SifremiUnuttumEpostaBox.Text);
         if (!string.IsNullOrEmpty(Gelen[0]))
         {
             string EpostsAdres = SifremiUnuttumEpostaBox.Text;
             string personel    = Gelen[0].ToString();
             personel = Ortak.Decrypt(personel);
             string Sifre = Gelen[1].ToString();
             Sifre = Ortak.Decrypt(Sifre);
             string mesaj = "Sayın " + personel + "\n\r" + Ortak.E_Ticaret_SiteAdi + " kayıtlı üyelik bilgileriniz aşağıdaki gibidir.\n\rKullanıcı Adınız :" + EpostsAdres + "\n\rŞifreniz :" + Sifre + "\n\r\n\r" + "*Bu yalnızca gönderim amaçlı bir e-posta adresidir. Bu iletiyi yanıtladığınızda, yanıtınız izlenmez veya cevaplanmaz.\n\rSaygılarımızla...\r" + Ortak.E_Ticaret_SiteAdi + "\r" + Ortak.Eposta + "\r" + Ortak.SiteAdresi_http;
             MailSend.SifreYenileMail(EpostsAdres, "Şifre Hatırlatma | " + Ortak.E_Ticaret_SiteAdi, mesaj);
             SifreBox.Text = "";
             Ortak.MesajGoster("Şifre E-Posta Adresine Gönderilmiştir.");
             SifremiUnuttumDiv.Visible    = false;
             KullaniciAdiBox.Text         = "";
             SifreBox.Text                = "";
             SifremiUnuttumEpostaBox.Text = "";
         }
         else
         {
             Ortak.MesajGoster("E-posta adresi bulanamadı ya da hatalı. Lütfen tekrar deneyiniz.");//!!! Dil
         }
     }
     catch (Exception)
     {
         Ortak.MesajGoster("Hata !!! Lütfen bilgileri kontrol edip tekrar deneyiniz.");//Dil !!!
     }
     finally
     {
         con.Close();
     }
 }
Example #8
0
 protected void AltKategori_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr         = e.Row.DataItem as DataRowView;
         Label       Adi_soyadi = e.Row.FindControl("lblMusteriAdi") as Label;
         Label       EPosta     = e.Row.FindControl("lblEpostaAdi") as Label;
         LinkButton  Kapat      = e.Row.FindControl("KapatBtn") as LinkButton;
         LinkButton  Ac         = e.Row.FindControl("AcBtn") as LinkButton;
         if (!string.IsNullOrEmpty(Adi_soyadi.Text))
         {
             Adi_soyadi.Text = Ortak.Decrypt(Adi_soyadi.Text);
         }
         else
         {
             Adi_soyadi.Text = "İsimsiz Ziyaretçi";
         }
         EPosta.Text = Ortak.Decrypt(EPosta.Text);
         bool Tukendi = Convert.ToBoolean(dr["IslemTamam"]);
         if (Tukendi == true)
         {
             Ac.Visible    = true;
             Kapat.Visible = false;
         }
         else
         {
             Ac.Visible    = false;
             Kapat.Visible = true;
         }
     }
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         if (Session["eticaret"] != null)
         {
             if (!IsPostBack)
             {
                 Label label = Master.FindControl("UrlMaplbl") as Label;
                 label.Text = "İade / Değişim Bildirimleri";
                 Label label2 = Master.FindControl("TepeMesajLbl") as Label;
                 label2.Text = "İade / Değişim  Bildirimleri";
                 if (Request.QueryString["ID"] != null)
                 {
                     Gelen_Aydi = Request.QueryString["ID"].ToString();
                     Gelen_Aydi = Ortak.Decrypt(Gelen_Aydi);
                     Gel_Bildirimler(Gelen_Aydi);
                 }
                 else
                 {
                     Gel_Bildirimler_Hepsi();
                 }
             }
         }
         else
         {
             Response.Redirect("Default.aspx", false);
         }
     }
     catch (Exception)
     {
         KayitTamam.Visible = false;
         HataVar.Visible    = true;
     }
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         if (Session["eticaret"] != null)
         {
             if (!IsPostBack)
             {
                 if (Request.QueryString["OID"] != null)
                 {
                     Gelen_Urun_ID = Request.QueryString["OID"].ToString();
                     Gelen_Urun_ID = Ortak.Decrypt(Gelen_Urun_ID);
                     IndirimOraniDoldur();
                     Kategori_GelListe();
                     Telefon_GelListe();
                     Urun_Bilgileri_Getir(Gelen_Urun_ID);
                     TelefonModel_GelListe(telefonDrop.SelectedValue);
                     dropTelefonModel.SelectedValue = GelenTelefonID;
                     Label label = Master.FindControl("UrlMaplbl") as Label;
                     label.Text = "Ürün Kopyalama";
                     Label label2 = Master.FindControl("TepeMesajLbl") as Label;
                     label2.Text = "Ürün Kopyalama İşlemleri";
                 }
             }
         }
         else
         {
             Response.Redirect("Default.aspx", false);
         }
     }
     catch (Exception)
     {
         //    HataVar.Visible = true;
     }
 }
Example #11
0
 private void EpostaHatirlat() // Değişecek E-Posta Gönderim Bilgisi
 {
     try
     {
         if (!string.IsNullOrEmpty(A.EPosta_Hatirlat_Getir(EpostaHatirlatBox.Text)))
         {
             string EpostsAdres = EpostaHatirlatBox.Text;
             string sifre       = A.EPosta_Hatirlat_Getir(EpostaHatirlatBox.Text);
             sifre = Ortak.Decrypt(sifre);
             string mesaj = "Sayın Yetkili, \n Kayıtlı üyelik bilgileriniz aşağıdaki gibidir.\n\nKullanıcı Adınız :" + EpostsAdres + "\n Şifre :" + sifre + "\n\n*Bu yalnızca gönderim amaçlı bir e-posta adresidir. Bu iletiyi yanıtladığınızda, yanıtınız izlenmez veya cevaplanmaz.";
             MailGonder(EpostsAdres, "Şifre Hatırlatma | E-Ticaret Giriş Bilgileri", mesaj);
             Response.Write("<script language='javascript'>window.alert('Şifre E-Posta adresinize gönderilmiştir.');</script>");
             EpostaHatirlatBox.Text = "";
             SifreDiv.Visible       = false;
             GirisEkraniDiv.Visible = true;
         }
         else
         {
             Response.Write("<script language='javascript'>window.alert('E-posta adresi bulanamadı ya da hatalı.');</script>");
             EpostaHatirlatBox.Text = "";
         }
     }
     catch (Exception)
     {
         Response.Write("<script language='javascript'>window.alert('Hata !!! Lütfen bilgileri kontrol edip tekrar deneyiniz.');</script>");
     }
 }
Example #12
0
    protected void DuzenleBtn_Click(object sender, EventArgs e)
    {
        ImageButton G = sender as ImageButton;

        Gel_Id = G.CommandArgument.ToString();
        Guncelle_EpostaAdresiBox.Text = Ortak.Decrypt(G.AlternateText);
        mpe.Show();
    }
 protected void KargoListesi_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr         = e.Row.DataItem as DataRowView;
         Label       Adi_soyadi = e.Row.FindControl("AdSoyadLbl") as Label;
         Adi_soyadi.Text = Ortak.Decrypt(Adi_soyadi.Text);
     }
 }
 protected void OdemeBildirim_Repeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
 {
     if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
     {
         Button Detay    = e.Item.FindControl("Odeme_DetayBtn") as Button;
         Label  AdSoyadi = e.Item.FindControl("AdSoyadLbl") as Label;
         AdSoyadi.Text = Ortak.Decrypt(AdSoyadi.Text);
         string Aydi = DataBinder.Eval(e.Item.DataItem, "Odeme_BildirimID").ToString();
         Detay.PostBackUrl = "OdemeBildirimleri.aspx?ID=" + Ortak.Encrypt(Aydi);
     }
 }
    protected void DuzenleBtn_Click(object sender, EventArgs e)
    {
        ImageButton G = sender as ImageButton;

        Gelen_Aydi = G.CommandArgument.ToString();
        string[] Gel = K.Guncelleme_Icin_Bilgiler(Gelen_Aydi);
        Guncelle_KargoFirmasi.Text = Gel[0].ToString();
        Guncelle_TakipNoBox.Text   = Ortak.Decrypt(Gel[1].ToString());
        Guncelle_SiparisNoBox.Text = Gel[2].ToString();
        Guncelle_MusteriAdBox.Text = Ortak.Decrypt(Gel[3].ToString());
        mpe.Show();
    }
Example #16
0
 protected void KargoBilgiDatalist_ItemDataBound(object sender, DataListItemEventArgs e)
 {
     if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
     {
         string    Sno    = DataBinder.Eval(e.Item.DataItem, "SiparisNo").ToString();
         HyperLink Sdetay = e.Item.FindControl("SiparisNoLink") as HyperLink;
         Sdetay.NavigateUrl = "SiparisDetay-" + Sno + ".aspx";
         HyperLink Kdetay = e.Item.FindControl("KargoDetayLink") as HyperLink;
         Kdetay.NavigateUrl = "KargoDetay-" + Sno + ".aspx";
         Label Takip = e.Item.FindControl("TakipNoLbl") as Label;
         Takip.Text = Ortak.Decrypt(Takip.Text);
     }
 }
 protected void Urunler_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr         = e.Row.DataItem as DataRowView;
         Label       Adi_soyadi = e.Row.FindControl("AdSoyadLbl") as Label;
         Adi_soyadi.Text = Ortak.Decrypt(Adi_soyadi.Text);
         ImageButton Kargo_Btn  = (ImageButton)e.Row.FindControl("KargoBtn");
         ImageButton Kurye_Btn  = (ImageButton)e.Row.FindControl("KuryeBtn");
         string      Musteri_ID = dr.Row["UyeID"].ToString();
         string      Siparis_ID = dr.Row["E_SiparisID"].ToString();
         Kargo_Btn.PostBackUrl = "KargoIslemleri.aspx?SiparisNoFiyat=" + Siparis_ID + "&AdSoyad=" + Musteri_ID;
         Kurye_Btn.PostBackUrl = "KuryeIslemleri.aspx?SiparisNoFiyat=" + Siparis_ID + "&AdSoyad=" + Musteri_ID;
     }
 }
    public string[] Gonder_Fatura_Adresi(string GelenID)
    {
        string[]   Personel = new string[11];
        SqlCommand comg     = new SqlCommand("select E_SiparisFaturaID,YetkiliAdSoyad,FirmaAdi,VergiDairesi,VergiNo,SehirID,SehirAdi,IlceID,IlceAdi,FaturaAdresi,TeslimatAdres from E_SiparisFaturaAdresi where UyeID=@ID", con);

        comg.Parameters.AddWithValue("@ID", GelenID);
        if (con.State == ConnectionState.Closed)
        {
            con.Open();
        }
        SqlDataReader dr = comg.ExecuteReader();

        if (dr.HasRows)
        {
            while (dr.Read())
            {
                Personel[0]  = Ortak.Decrypt(dr["YetkiliAdSoyad"].ToString());
                Personel[1]  = Ortak.Decrypt(dr["FirmaAdi"].ToString());
                Personel[2]  = Ortak.Decrypt(dr["VergiDairesi"].ToString());
                Personel[3]  = Ortak.Decrypt(dr["VergiNo"].ToString());
                Personel[4]  = dr["SehirID"].ToString();
                Personel[5]  = dr["IlceID"].ToString();
                Personel[6]  = Ortak.Decrypt(dr["FaturaAdresi"].ToString());
                Personel[7]  = dr["TeslimatAdres"].ToString();
                Personel[8]  = dr["SehirAdi"].ToString();
                Personel[9]  = dr["IlceAdi"].ToString();
                Personel[10] = dr["E_SiparisFaturaID"].ToString();
            }
        }
        else
        {
            Personel[0] = "";
        }
        dr.Close();
        comg.Dispose();
        return(Personel);
    }
Example #19
0
 protected void Page_Load(object sender, EventArgs e)
 {
     try
     {
         if (Session["eticaret"] != null)
         {
             if (!IsPostBack)
             {
                 Label label = Master.FindControl("UrlMaplbl") as Label;
                 label.Text = "Ürün Düzenleme";
                 Label label2 = Master.FindControl("TepeMesajLbl") as Label;
                 label2.Text = "Ürün Düzenleme İşlemleri";
                 if (Request.QueryString["ID"] != null)
                 {
                     GeliyorID       = Ortak.Decrypt(Request.QueryString["ID"].ToString());
                     HataLbl.Visible = false;
                     Urunyok.Visible = false;
                     Details.Visible = true;
                     Urun_Bilgileri_Getir(GeliyorID);
                     UrunAdiBox.Text = UrunAdiLbl.Text;
                 }
                 else
                 {
                     Urun_Bilgileri_Getir(GelID.ToString());
                 }
             }
         }
         else
         {
             Response.Redirect("Default.aspx", false);
         }
     }
     catch (Exception)
     {
         HataVar.Visible = true;
     }
 }
    public string[] Gonder_Teslimat_Adresi(string GelenID)
    {
        string[]   Personel = new string[10];
        SqlCommand comg     = new SqlCommand("select E_TeslimatAdresiID,TckimlikNo,EPostaAdresi,CepTelefonu,Telefon,SehirID,SehirAdi,IlceID,IlceAdi,Adres from E_SiparisTeslimatAdresi where UyeID=@ID", con);

        comg.Parameters.AddWithValue("@ID", GelenID);
        if (con.State == ConnectionState.Closed)
        {
            con.Open();
        }
        SqlDataReader dr = comg.ExecuteReader();

        if (dr.HasRows)
        {
            while (dr.Read())
            {
                Personel[0] = Ortak.Decrypt(dr["TckimlikNo"].ToString());
                Personel[1] = Ortak.Decrypt(dr["EPostaAdresi"].ToString());
                Personel[2] = Ortak.Decrypt(dr["CepTelefonu"].ToString());
                Personel[3] = Ortak.Decrypt(dr["Telefon"].ToString());
                Personel[4] = dr["SehirID"].ToString();
                Personel[5] = dr["IlceID"].ToString();
                Personel[6] = Ortak.Decrypt(dr["Adres"].ToString());
                Personel[7] = dr["SehirAdi"].ToString();
                Personel[8] = dr["IlceAdi"].ToString();
                Personel[9] = dr["E_TeslimatAdresiID"].ToString();
            }
        }
        else
        {
            Personel[0] = "";
        }
        dr.Close();
        comg.Dispose();
        return(Personel);
    }
 protected void AltKategori_Grid_RowDataBound(object sender, GridViewRowEventArgs e)
 {
     if (e.Row.RowType == DataControlRowType.DataRow)
     {
         DataRowView dr               = e.Row.DataItem as DataRowView;
         Label       Adi_soyadi       = e.Row.FindControl("lblMusteriAdi") as Label;
         Label       Adi_soyadi_Detay = e.Row.FindControl("lblMusteriAdi_detay") as Label;
         LinkButton  Kapat            = e.Row.FindControl("KapatBtn") as LinkButton;
         LinkButton  Ac               = e.Row.FindControl("AcBtn") as LinkButton;
         Adi_soyadi.Text       = Ortak.Decrypt(Adi_soyadi.Text);
         Adi_soyadi_Detay.Text = Adi_soyadi.Text;
         bool Tukendi = Convert.ToBoolean(dr["IslemTamam"]);
         if (Tukendi == true)
         {
             Ac.Visible    = true;
             Kapat.Visible = false;
         }
         else
         {
             Ac.Visible    = false;
             Kapat.Visible = true;
         }
     }
 }
Example #22
0
    public string Musteri_AdSoyad_Gonder(string _UyeID)
    {
        string     AdSoyad   = "";
        SqlCommand comGuncel = new SqlCommand("select AdSoyad,EPostaBox from E_Personel where UyeID=@AS", con);

        comGuncel.Parameters.AddWithValue("@AS", _UyeID);
        if (con.State == ConnectionState.Closed)
        {
            con.Open();
        }
        SqlDataReader dr = comGuncel.ExecuteReader();

        if (dr.HasRows)
        {
            while (dr.Read())
            {
                AdSoyad = Ortak.Decrypt(dr[0].ToString()) + "-" + Ortak.Decrypt(dr[1].ToString());
            }
        }
        dr.Close();
        con.Close();
        comGuncel.Dispose();
        return(AdSoyad);
    }