protected void Page_Load(object sender, EventArgs e) { #region JS İçin Admin Root mu Değil mi? Class.Fonksiyonlar.JavaScript.Ekle("var AdminRoot = function(){return " + Class.Fonksiyonlar.Admin.Kullanici.Kontroller.Root(Class.Fonksiyonlar.Admin.Genel.AdminID()).ToString().ToLower() + ";};"); #endregion #region Oturum Kontrol if (!Class.Fonksiyonlar.Admin.Genel.SessionKontrol()) { #region Oturum Yoksa Postala Response.Redirect("default.aspx?rnd=" + (DateTime.Now.Ticks / TimeSpan.TicksPerMillisecond) + "&s=" + Class.Fonksiyonlar.Genel.MevcutSayfa(), false); Context.ApplicationInstance.CompleteRequest(); return; #endregion } else { #region JS İçin Header Yolu Class.Fonksiyonlar.JavaScript.Ekle("var HeaderYolu = \"" + Class.Degiskenler.Site.Yollar.Haber.Replace(@"\", "\\\\") + "\";"); #endregion #region Sayfa Adını Al SayfaAdi = Request.Url.LocalPath.Split('/')[Request.Url.LocalPath.Split('/').Count() - 1].Replace(Request.CurrentExecutionFilePathExtension, ""); #endregion #region Row Selection Modeli RSM = GridPanel1.SelectionModel.Primary as RowSelectionModel; #endregion #region Icon Register Olayı if (!IsPostBack) { ResourceManager1.RegisterIcon(Icon.Cancel); } #endregion #region Veri Cacheden Mi Gelecek? if (Request.QueryString["cache"] != null) { if (Request.QueryString["cache"].ToString().Trim() == "ok") { CacheOlayi = true; } } #endregion #region Dil Seç if (!IsPostBack) { AdminClass.StoreDoldurDil(StoreDil, true); } if (string.IsNullOrEmpty(ComboBoxDil.SelectedItem.Value)) { ComboBoxDil.SelectedItem.Value = AdminClass.AnaDilID(); } #endregion } #endregion }
protected void YeniKayitEkraniGetir(object sender, EventArgs e) { AdminClass.StoreDoldurDil(StoreDil1, false); #region Otomatik Dil Seçimi if (ComboBoxDil.SelectedItem.Value == "-1") { Ekle_ComboBoxDil.SelectedItem.Value = AdminClass.AnaDilID(); } else { Ekle_ComboBoxDil.SelectedItem.Value = ComboBoxDil.SelectedItem.Value; } #endregion WindowEkle.Show(); }
protected void YeniKayitEkraniGetir(object sender, EventArgs e) { AdminClass.StoreDoldurDil(StoreDil1, false); #region Otomatik Dil Seçimi int DilID2; if (ComboBoxDil.SelectedItem.Value == "-1") { Ekle_ComboBoxDil.SelectedItem.Value = AdminClass.AnaDilID(); DilID2 = int.Parse(AdminClass.AnaDilID()); } else { Ekle_ComboBoxDil.SelectedItem.Value = ComboBoxDil.SelectedItem.Value; DilID2 = int.Parse(ComboBoxDil.SelectedItem.Value); } #endregion StoreDoldurSabitler(Ekle_ComboBoxSabitler, StoreSabitler1, DilID2); WindowEkle.Show(); }