真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)

申請用戶帳戶的界面如下,若想記錄用戶選中的默認(rèn)參數(shù),如下圖:

公司主營業(yè)務(wù):網(wǎng)站建設(shè)、網(wǎng)站制作、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。成都創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來驚喜。成都創(chuàng)新互聯(lián)公司推出閩侯免費(fèi)做網(wǎng)站回饋大家。

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)

  需要能記錄紅色選中部分的選項(xiàng)內(nèi)容,希望每次進(jìn)入次頁面的時(shí)候,能記住用戶的當(dāng)前選中狀態(tài)。

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)

下面粘貼通用權(quán)限管理系統(tǒng)中的源碼,有興趣的朋友可以閱讀理解,記錄用戶選中狀態(tài)的代碼實(shí)現(xiàn)部分

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)
#region public override void FormOnLoad() 加載窗體
///
/// 加載窗體
///

publicoverridevoid FormOnLoad()
        {
// 綁定下拉筐數(shù)據(jù)
this.BindItemDetails();
if (!string.IsNullOrEmpty(this.UserInfo.CompanyId))
            {
this.ucCompany.SelectedId = this.UserInfo.CompanyId;
            }
string isStaff = DotNetService.Instance.ParameterService.GetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "IsStaff");
if (!string.IsNullOrEmpty(isStaff))
            {
this.chkIsStaff.Checked = true.ToString().Equals(isStaff);
            }
string close = DotNetService.Instance.ParameterService.GetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Close");
if (!string.IsNullOrEmpty(close))
            {
this.chkClose.Checked = true.ToString().Equals(close);
            }
string password = DotNetService.Instance.ParameterService.GetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Password");
if (!string.IsNullOrEmpty(password))
            {
if (password.Equals(this.rbtnUserInput.Name))
                {
this.rbtnUserInput.Checked = true;
                }
elseif (password.Equals(this.rbtnDefaultPassword.Name))
                {
this.rbtnDefaultPassword.Checked = true;
                }
elseif (password.Equals(this.rbtnUserNamePassword.Name))
                {
this.rbtnUserNamePassword.Checked = true;
                }
            }
        }
#endregion
C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)
privatevoid rbtnUserInput_CheckedChanged(object sender, EventArgs e)
       {
if (this.rbtnUserInput.Checked)
           {
this.txtPassword.TabStop = true;
this.txtConfirmPassword.TabStop = true;
this.txtPassword.Text = string.Empty;
this.txtConfirmPassword.Text = string.Empty;
               DotNetService.Instance.ParameterService.SetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Password", this.rbtnUserInput.Name);
           }
       }

privatevoid rbtnDefaultPassword_CheckedChanged(object sender, EventArgs e)
       {
if (this.rbtnDefaultPassword.Checked)
           {
this.txtPassword.Text = BaseSystemInfo.DefaultPassword;
this.txtConfirmPassword.Text = BaseSystemInfo.DefaultPassword;
if (!string.IsNullOrEmpty(this.txtPassword.Text))
               {
this.txtPassword.TabStop = false;
this.txtConfirmPassword.TabStop = false;
               }
               DotNetService.Instance.ParameterService.SetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Password", this.rbtnDefaultPassword.Name);
           }
       }

privatevoid rbtnUserNamePassword_CheckedChanged(object sender, EventArgs e)
       {
if (this.rbtnUserNamePassword.Checked)
           {
this.txtPassword.Text = this.txtUserName.Text;
this.txtConfirmPassword.Text = this.txtUserName.Text;
if (string.IsNullOrEmpty(this.txtPassword.Text))
               {
this.txtPassword.TabStop = true;
this.txtConfirmPassword.TabStop = true;
               }
else
               {
this.txtPassword.TabStop = false;
this.txtConfirmPassword.TabStop = false;
               }
               DotNetService.Instance.ParameterService.SetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Password", this.rbtnUserNamePassword.Name);
           }
       }
C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)

C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)
privatevoid chkIsStaff_CheckedChanged(object sender, EventArgs e)
       {
if (this.FormLoaded)
           {
               DotNetService.Instance.ParameterService.SetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "IsStaff", this.chkIsStaff.Checked.ToString());
           }
       }

privatevoid chkClose_CheckedChanged(object sender, EventArgs e)
       {
if (this.FormLoaded)
           {
               DotNetService.Instance.ParameterService.SetParameter(BaseSystemInfo.UserInfo, "User", "RequestAnAccount", "Close", this.chkClose.Checked.ToString());
           }
       }
C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)


分享文章:C#.NET通用權(quán)限管理系統(tǒng)組件中用少數(shù)幾行代碼實(shí)現(xiàn)記錄頁面狀態(tài)
標(biāo)題鏈接:http://weahome.cn/article/jpsgpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部