/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Employees", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { txtEmpIDSearch.Enabled = FormSession.getPerm("VFPEmp"); btnSearchDetails.Enabled = FormSession.getPerm("VFPEmp"); MainMasterPage.ShowTitel(General.Msg("Employees FingerPrint", "بصمات الموظفين")); if (FormSession.getPerm("VFPEmp")) { hfdConnStr.Value = ConfigurationManager.ConnectionStrings["constring"].ConnectionString.Replace("\\", "...."); hfdLoginUser.Value = FormSession.LoginUsr.Replace("\\", "...."); hfdLang.Value = FormSession.Language; string ID = hfdConnStr.Value + "," + hfdLoginUser.Value + "," + hfdLang.Value; ClientScript.RegisterStartupScript(this.GetType(), "key", "javascript:Connect('" + ID + "');", true); } } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Config", pageDiv); //---Common Code ----------------------------------------------------------------- // MainMasterPage.ShowTitel(General.Msg("institution Setting", "إعدادات المنشأة")); if (!FormSession.PermUsr.Contains("U" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("U" + MainPer); btnSave.Text = General.Msg("Save", "حفظ"); if (!IsPostBack) { PopulateUI(); } if (IsPostBack) { imgLogo.PopulateImage("Logo"); } } catch (Exception e1) { } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { /*** Fill Session ************************************/ FormSession.FillSession("Config", pageDiv); /*** Fill Session ************************************/ if (!Page.IsPostBack) { pnlMain.Attributes.Add("onkeypress", "javascript:return DefaultButton(event,'" + btnSave.ClientID + "');"); MainMasterPage.ShowTitel(General.Msg("E-mail settings", "إعدادات البريد الإلكتروني")); if (!FormSession.getPerm(new string[] { "IEml", "UEml" })) { Response.Redirect(@"~/Login.aspx"); btnSave.Enabled = false; } else { btnSave.Enabled = true; } UIDataEnabled(true); ViewState["CommandName"] = "NOT"; PopulateUI(); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Employees", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.getPerm("FPVerify")) { Response.Redirect(@"~/Login.aspx"); } MainMasterPage.ShowTitel(General.Msg("Fingerprint verification", "التحقق بالبصمة")); hfdConnStr.Value = ConfigurationManager.ConnectionStrings["constring"].ConnectionString.Replace("\\", "...."); hfdLoginUser.Value = FormSession.LoginUsr.Replace("\\", "...."); hfdLang.Value = FormSession.Language; string ID = hfdConnStr.Value + "," + hfdLoginUser.Value + "," + hfdLang.Value; ClientScript.RegisterStartupScript(this.GetType(), "key", "javascript:Connect('" + ID + "');", true); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Home", pageDiv); //--Common Code----------------------------------------------------------------- // if (!string.IsNullOrEmpty(txtCurrentPass.Text)) { ViewState["CurrentPass"] = txtCurrentPass.Text; } if (ViewState["CurrentPass"] != null) { txtCurrentPass.Attributes["value"] = ViewState["CurrentPass"].ToString(); } if (!string.IsNullOrEmpty(txtNewPass.Text)) { ViewState["NewPass"] = txtNewPass.Text; } if (ViewState["NewPass"] != null) { txtNewPass.Attributes["value"] = ViewState["NewPass"].ToString(); } if (!string.IsNullOrEmpty(txtConfirmPass.Text)) { ViewState["ConfirmPass"] = txtConfirmPass.Text; } if (ViewState["ConfirmPass"] != null) { txtConfirmPass.Attributes["value"] = ViewState["ConfirmPass"].ToString(); } }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Users", pageDiv); FormCtrl.RefreshGridEmpty(ref grdData, 20, "No Data Found", "لا توجد بيانات"); //--Common Code----------------------------------------------------------------- // if (!string.IsNullOrEmpty(txtUsrPassword.Text)) { ViewState["Pass"] = txtUsrPassword.Text; } if (ViewState["Pass"] != null) { txtUsrPassword.Attributes["value"] = ViewState["Pass"].ToString(); } if (!IsPostBack) { btnAdd.Enabled = FormSession.PermUsr.Contains("I" + MainPer); pnlSearch.Enabled = grdData.Enabled = FormSession.PermUsr.Contains("V" + MainPer); FillGrid(MainQuery); DataItemStatus(false); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Config", pageDiv); FillGrid(); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (Request.QueryString["ac"] != null) { if (Request.QueryString["ac"].ToString() == "i") { if (!FormSession.PermUsr.Contains("I" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("I" + MainPer); ViewState["CommandName"] = "Save"; btnSave.Text = General.Msg("Save", "حفظ"); MainMasterPage.ShowTitel(General.Msg("Add " + MainNameEn, "إضافة " + MainName1Ar)); divUpdDel.Visible = false; } if (Request.QueryString["ac"].ToString() == "u") { if (!FormSession.PermUsr.Contains("U" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("U" + MainPer); ViewState["CommandName"] = "Update"; btnSave.Text = General.Msg("Update", "تعديل"); MainMasterPage.ShowTitel(General.Msg("Update " + MainNameEn, "تعديل " + MainName1Ar)); divUpdDel.Visible = true; Fillddl(); } if (Request.QueryString["ac"].ToString() == "d") { if (!FormSession.PermUsr.Contains("D" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("D" + MainPer); ViewState["CommandName"] = "Delete"; btnSave.Text = General.Msg("Delete", "حذف"); MainMasterPage.ShowTitel(General.Msg("Delete " + MainNameEn, "حذف " + MainName1Ar)); divUpdDel.Visible = true; Fillddl(); } } } } catch (Exception EX) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Visitors", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { pnlMain.Attributes.Add("onkeypress", "javascript:return DefaultButton(event,'" + btnIDSearch.ClientID + "');"); if (Request.QueryString["ID"] == null) { Response.Redirect(@"~/Login.aspx"); } ViewState["VisIdentityNo"] = ""; ViewState["Action"] = ""; ButtonAction("00", true); //ddlTmpID.Enabled = false; //VisImage.EnabledImage(false); if (Request.QueryString["ID"].ToString() == "i") { MainMasterPage.ShowTitel(General.Msg("Add " + MainNameEn + " Card", "إضافة بطاقة " + MainName1Ar)); if (!FormSession.PermUsr.Contains("IVis")) { Response.Redirect(@"~/Login.aspx"); } ViewState["Action"] = "A"; btnSave.Enabled = btnCancel.Enabled = false; Fillddl(); } if (Request.QueryString["ID"].ToString() == "u") { MainMasterPage.ShowTitel(General.Msg("Update " + MainNameEn + " Card", "تعديل بطاقة " + MainName1Ar)); if (!FormSession.PermUsr.Contains("UVis")) { Response.Redirect(@"~/Login.aspx"); } ViewState["Action"] = "U"; btnSave.Enabled = btnCancel.Enabled = false; Fillddl(); } ddlTmpID.Enabled = false; } if (IsPostBack) { VisImage.PopulateImage(txtVisIdentityNo.Text); } } catch (Exception ex) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Home", pageDiv); //--Common Code----------------------------------------------------------------- // if (!IsPostBack) { } }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Settings", pageDiv); //--Common Code----------------------------------------------------------------- // if (!IsPostBack) { PopulateUI(MainQuery); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Employees", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { pnlMain.Attributes.Add("onkeypress", "javascript:return DefaultButton(event,'" + btnIDSearch.ClientID + "');"); if (!FormSession.getPerm(new string[] { "IMng", "UMng", "IEmp", "UEmp", "ICon", "UCon" })) { Response.Redirect(@"~/Login.aspx"); } if (Request.QueryString["ac"] != null) { string ac = Request.QueryString["ac"].ToString(); ViewState["ac"] = ac; if (ac == "View") { //if (!FormSession.getPerm("UMng")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } string iEmpID = Request.QueryString["EmpID"].ToString(); divContract.Visible = true; divSection.Visible = true; DataItemEnabled(false); Fillddl(); btnIDSearch.Enabled = btnUploadDoc.Enabled = false; if (Request.QueryString["EmpID"] != null) { DataTable EmpDT = DBFun.FetchData("SELECT * FROM EmployeeMaster WHERE EmpID = '" + iEmpID + "' "); FillGrdDocs(EmpDT.Rows[0]["EmpNationalID"].ToString()); if (!DBFun.IsNullOrEmpty(EmpDT)) { ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue(EmpDT.Rows[0]["EmpType"].ToString())); FillFromDT(EmpDT); } } } } } if (IsPostBack) { EmpImage.PopulateImage(txtEmpNationalID.Text); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Machines", pageDiv); FormCtrl.RefreshGridEmpty(ref grdData, 20, "No Data Found", "لا توجد بيانات"); //--Common Code----------------------------------------------------------------- // if (!IsPostBack) { FillGrid(MainQuery); } }
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("EmpVacation", pageDiv); FormCtrl.RefreshGridEmpty(ref grdData, 20, "No Data Found", "لا توجد بيانات"); //--Common Code----------------------------------------------------------------- // if (!IsPostBack) { btnAdd.Enabled = FormSession.PermUsr.Contains("I" + MainPer); pnlSearch.Enabled = grdData.Enabled = FormSession.PermUsr.Contains("V" + MainPer); FillGrid(MainQuery); DataItemStatus(false); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Visitors", null); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { MainMasterPage.ShowTitel(General.Msg("Import images from a folder", "الاستيراد من مجلد الصور")); if (!FormSession.getPerm(new string[] { "ImpVis" })) { Response.Redirect(@"~/Login.aspx"); } } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// public void RedirectPage() { FormSession.FillSession("", null); PermSideMenu(); foreach (Control ctrl in this.Controls) { if (ctrl is LinkButton) { LinkButton lb = (LinkButton)ctrl; string id = lb.ID; if (lb.Enabled) { Response.Redirect(lb.PostBackUrl); break; } } } }
//string SubQuery = "SELECT * FROM SubDepartments WHERE SdpID = SdpID "; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //--Common Code----------------------------------------------------------------- // FormSession.FillSession("Departments", pageDiv); FormCtrl.RefreshGridEmpty(ref grdMainData, 20, "No Data Found", "لا توجد بيانات"); //FormCtrl.RefreshGridEmpty(ref grdSubData , 20, "No Data Found","لا توجد بيانات"); //--Common Code----------------------------------------------------------------- // if (!IsPostBack) { btnMainAdd.Enabled = FormSession.PermUsr.Contains("I" + MainPer); pnlSearch.Enabled = grdMainData.Enabled = FormSession.PermUsr.Contains("V" + MainPer); FillMainGrid(MainQuery); //FillSubGrid(SubQuery + " AND SdpID = -1"); DataMainItemStatus(false); //DataSubItemStatus(false); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Config", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.PermUsr.Contains("SBla")) { Response.Redirect(@"~/Login.aspx"); } MainMasterPage.ShowTitel(General.Msg("Black List History", "بحث القائمة السوداء")); } } catch (Exception e1) { } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { FormSession.FillSession("", null); try { Response.AppendHeader("Refresh", Convert.ToString((Session.Timeout * 60) + 2) + "; URL=../Login.aspx"); } catch (Exception ex) { } if (FormSession.Language == "Ar") { MainDiv.Attributes.Add("dir", "rtl"); } else { MainDiv.Attributes.Add("dir", "ltr"); } int Index = InfoTab.FindPageIndex(FormSession.PageIndex); InfoTab.ShowTabs(Index, Session["Language"].ToString(), (HtmlTableCell)MyHeader.FindControl("MenuHeader")); lblHeading.Text = Titel; }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Employees", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.getPerm("UEmpType")) { Response.Redirect(@"~/Login.aspx"); } MainMasterPage.ShowTitel(General.Msg("Transferr Employees", "نقل الموظفين")); ButtonAction("00", true); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Visitors", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { MainMasterPage.ShowTitel(General.Msg("Import from Excel File", "الاستيراد من ملف اكسل")); if (!FormSession.getPerm(new string[] { "ImpVis" })) { Response.Redirect(@"~/Login.aspx"); } } } catch (Exception e1) { } }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Card", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.getPerm("SCrd")) { Response.Redirect(@"~/Login.aspx"); } MainMasterPage.ShowTitel(General.Msg("Cards History", "سجلات البطاقة")); Fillddl(); //DataLang(); } } catch (Exception e1) { } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { //---Common Code ----------------------------------------------------------------- // string Type = (Request.QueryString["ID"] != null) ? Request.QueryString["ID"] : ""; FormSession.FillSession("Reports", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.PermUsr.Contains("Reports")) { Response.Redirect(@"~/Login.aspx"); } MainMasterPage.ShowTitel(General.Msg("Reports", "التقارير")); lblSelectedreport.Text = General.Msg("Please select Report", "من فضلك اختر التقرير"); FillReportsGroups(); FillIssue(); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Visitors", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { MainMasterPage.ShowTitel(General.Msg("Events Cards History", "سجلات بطاقات المناسبات")); if (!FormSession.PermUsr.Contains("SVis")) { Response.Redirect(@"~/Login.aspx"); } btnSearch.Enabled = btnCancel.Enabled = FormSession.PermUsr.Contains("SVis"); Fillddl(); } } catch (Exception e1) { } }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Card", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { if (!FormSession.getPerm("IStick")) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.getPerm("IStick"); MainMasterPage.ShowTitel(General.Msg("Add Sticker", "إصدار ملصق")); ButtonAction("100"); Fillddl(); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Users", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { MainMasterPage.ShowTitel(General.Msg("Users History", "سجلات المستخدمين")); if (!FormSession.PermUsr.Contains("S" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSearch.Enabled = FormSession.PermUsr.Contains("S" + MainPer); FormCtrl.FillDDL("StatusWithSelect", ddlUsrStatus); } } catch (Exception e1) { } }
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Card", pageDiv); FormCtrl.RefreshGridEmpty(ref grdData, 20, "No cards for Approve", "لا توجد بطاقات للموافقة عليها"); hfdLang.Value = FormSession.Language; // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { MainMasterPage.ShowTitel(General.Msg("Approve Card", "الموافقة على البطاقات")); if (!FormSession.PermUsr.Contains("ACrd")) { Response.Redirect(@"~/Login.aspx"); } FillDDL(); FillGrid(); } } catch (Exception Ex) { MessageFun.ShowAdminMsg(this, Ex.Message); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Home", pageDiv); MainMasterPage.ShowTitel(General.Msg("Change Password", "تغيير كلمة المرور")); // --------------------Common Code ----------------------------------------------------------------- // if (!string.IsNullOrEmpty(txtOldpassword.Text)) { ViewState["OldPass"] = txtOldpassword.Text; } if (ViewState["OldPass"] != null) { txtOldpassword.Attributes["value"] = ViewState["OldPass"].ToString(); } if (!string.IsNullOrEmpty(txtNewpassword.Text)) { ViewState["NewPass"] = txtNewpassword.Text; } if (ViewState["NewPass"] != null) { txtNewpassword.Attributes["value"] = ViewState["NewPass"].ToString(); } if (!string.IsNullOrEmpty(txtConfirmpassword.Text)) { ViewState["ConfirmPass"] = txtConfirmpassword.Text; } if (ViewState["ConfirmPass"] != null) { txtConfirmpassword.Attributes["value"] = ViewState["ConfirmPass"].ToString(); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "Page_Load"); } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { FormSession.FillSession("", null); PermSideMenu(); }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { // --------------------Common Code ----------------------------------------------------------------- // FormSession.FillSession("Users", pageDiv); // --------------------Common Code ----------------------------------------------------------------- // if (!IsPostBack) { pnlMain.Attributes.Add("onkeypress", "javascript:return DefaultButton(event,'" + btnSave.ClientID + "');"); if (Request.QueryString["ac"] != null) { if (Request.QueryString["ac"].ToString() == "i") { if (!FormSession.PermUsr.Contains("I" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("I" + MainPer); ViewState["CommandName"] = "Save"; btnSave.Text = General.Msg("Save", "حفظ"); MainMasterPage.ShowTitel(General.Msg("Add " + MainNameEn, "إضافة " + MainName1Ar)); divUpdDel.Visible = false; } if (Request.QueryString["ac"].ToString() == "u") { if (!FormSession.PermUsr.Contains("U" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("U" + MainPer); ViewState["CommandName"] = "Update"; btnSave.Text = General.Msg("Update", "تعديل"); MainMasterPage.ShowTitel(General.Msg("Update " + MainNameEn, "تعديل " + MainName1Ar)); divUpdDel.Visible = true; Fillddl(); } if (Request.QueryString["ac"].ToString() == "d") { if (!FormSession.PermUsr.Contains("D" + MainPer)) { Response.Redirect(@"~/Login.aspx"); } btnSave.Enabled = FormSession.PermUsr.Contains("D" + MainPer); ViewState["CommandName"] = "Delete"; btnSave.Text = General.Msg("Delete", "حذف"); MainMasterPage.ShowTitel(General.Msg("Delete " + MainNameEn, "حذف " + MainName1Ar)); divUpdDel.Visible = true; Fillddl(); } } } } catch (Exception e1) { } }
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// protected void Page_Load(object sender, EventArgs e) { try { //---Common Code ----------------------------------------------------------------- // FormSession.FillSession("Employees", pageDiv); //---Common Code ----------------------------------------------------------------- // if (!IsPostBack) { pnlMain.Attributes.Add("onkeypress", "javascript:return DefaultButton(event,'" + btnIDSearch.ClientID + "');"); if (!FormSession.getPerm(new string[] { "IMng", "UMng", "IEmp", "UEmp", "ICon", "UCon" })) { Response.Redirect(@"~/Login.aspx"); } if (Request.QueryString["ac"] != null) { string ac = Request.QueryString["ac"].ToString(); ViewState["ac"] = ac; if (ac == "IMng") { if (!FormSession.getPerm("IMng")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Save", "حفظ"); MainMasterPage.ShowTitel(General.Msg("Add Aramco Employee", "إضافة موظف أرامكو")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Mng")); divContract.Visible = false; rfvCompID.Enabled = false; divSection.Visible = false; rfvSecID.Enabled = false; } if (ac == "UMng") { if (!FormSession.getPerm("UMng")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Update", "تعديل"); MainMasterPage.ShowTitel(General.Msg("Update Aramco Employee", "تعديل موظف أرامكو")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Mng")); divContract.Visible = false; rfvCompID.Enabled = false; divSection.Visible = false; rfvSecID.Enabled = false; } if (ac == "IEmp") { if (!FormSession.getPerm("IEmp")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Save", "حفظ"); MainMasterPage.ShowTitel(General.Msg("Add Third party Employee", "إضافة موظف جهات خارجية ")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Emp")); divContract.Visible = false; rfvCompID.Enabled = false; divSection.Visible = true; rfvSecID.Enabled = true; txtIDSearch.Text = FindMaxID(); } if (ac == "UEmp") { if (!FormSession.getPerm("UEmp")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Update", "تعديل"); MainMasterPage.ShowTitel(General.Msg("Update Third party Employee", "تعديل موظف جهات خارجية ")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Emp")); divContract.Visible = false; rfvCompID.Enabled = false; divSection.Visible = true; rfvSecID.Enabled = true; } if (ac == "ICon") { if (!FormSession.getPerm("ICon")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Save", "حفظ"); MainMasterPage.ShowTitel(General.Msg("Add Contractor", "إضافة متعاقد")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Con")); divContract.Visible = true; rfvCompID.Enabled = true; divSection.Visible = false; rfvSecID.Enabled = false; txtIDSearch.Text = FindMaxID(); } if (ac == "UCon") { if (!FormSession.getPerm("UCon")) { btnSave.Enabled = false; btnIDSearch.Enabled = false; } btnSave.Text = General.Msg("Update", "تعديل"); MainMasterPage.ShowTitel(General.Msg("Update Contractor", "تعديل متعاقد")); ddlEmpType.SelectedIndex = ddlEmpType.Items.IndexOf(ddlEmpType.Items.FindByValue("Con")); divContract.Visible = true; rfvCompID.Enabled = true; divSection.Visible = false; rfvSecID.Enabled = false; } } EmpImage.EnabledImage(false); Fillddl(); } if (IsPostBack) { EmpImage.PopulateImage(txtEmpNationalID.Text); } } catch (Exception e1) { DBFun.InsertError(FormSession.PageName, "PageLoad"); } }