15 cellSpacing="1" cellPadding="1" width="446" border="1">
16
17 18 ユーザー名: |
19 20 |
21 22 |
23
24
25 26 秘密: |
27 28 |
29 30 |
31
32
33 クッキーを保存するかどうか |
34 35 |
36 |
37
38 表>
39 40 runat="server" width="78px" Text="登录">
41 42 runat="server" NavigateUrl="Default.aspx">ハイパーリンク
43
44 ボディ>
45
login.aspx.cs代码如下
private void btnLoginBetter_Click(オブジェクト送信者、System.EventArgs e)
{
if (this.tbName.Text == "管理者" && this.tbPass.Text == "管理者")
{
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1,this.tbName.Text,DateTime.Now,DateTime.Now.AddMinutes(30),this.PersistCookie.Checked,"User");//创建一个验证票紙
string cookieStr = FormsAuthentication.Encrypt(ticket);进行加密
HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName,cookieStr); クッキーを作成、クッキー名は web.config 設定の名前、加密後のデータクッキー Str、
if (this.PersistCookie.Checked)// 判断用户かどうか选中クッキー
cookie.Expires = ticket.Expiration;//获取cookie过期時間
cookie.Path = FormsAuthentication.FormsCookiePath;//設置cookie保存路径
Response.Cookies.Add(cookie);
文字列strRedirect;
strRedirect = Request["ReturnUrl"];//取り出した戻りurl
if (strRedirect == null)
strRedirect = "Default.aspx";
Response.Redirect(strRedirect,true);
}
それ以外
{
Response.Write("");
}
}
Default.aspx HTML代コード
後置代
private void Page_Load(オブジェクト送信者、System.EventArgs e)
{
this.lbUser.Text = ユーザー.Identity.Name;
if (User.IsInRole("Admin"))
this.lbSf.Text = "管理者";
それ以外
this.lbSf.Text = "ユーザー";
Web ボディ デザイナーが生成した代
コード#region Web ボディ デザイナーが生成した代コード
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: この調整は ASP.NET Web ボディ デザイナーに必要です。
//
InitializeComponent();
Base.OnInit(e);
}
/**//// <概要>
/// デバイスのサポートに必要な方法 - 不要な代码编辑器修正
/// このメソッドの内容。
/// 概要>
private void InitializeComponent()
{
this.btnLogout.Click += new System.EventHandler(this.btnLogout_Click);
this.Load += 新しい System.EventHandler(this.Page_Load);
}
#endregion
private void btnLogout_Click(オブジェクト送信者、System.EventArgs e)
{
FormsAuthentication.SignOut();//注销票
Response.Redirect("login.aspx",true);login.aspx 面を返す
}
webconfig構成は以下の通り
<認証モード="フォーム" >
//.SecurityDemo は cookie 名、
認証> <
認可>
//拒否绝全て匿名用户
//允许管理级别用户访问
認可>
私自身の感想ASP書き込みは、一般的にセッションがユーザーが合法であるかどうかを判断しますが、ASP.NETのページ内では個人認証を使用しており、基本的にすべての面で必要な認証が可能です。ただし、web.configで可能です。指定された面に対する設置制限、設置料金は次のようになります
<システム.ウェブ>
<認可>
<ユーザーの拒否=?" />
認可>
場所>
上掲書のように一つの面だけが配置されていれば、感覚は受け入れられますが、複数の面が人を蓄積させる必要はありません。
小さな目は多くのことを行っている可能性がありますが、大きな目は接触していません。
http://www.cnblogs.com/paleyyang/archive/2006/10/21/536147.html