私は非常にシンプルなウェブサイトを開発しました。私は3つのウェブページしか持っていません。
- Logon.aspx
- Register.aspx
- MyAccount.aspx
Logon.aspxコード:
if (ValidateUser(email, password))
{
FormsAuthenticationTicket tkt;
string cookiestr;
HttpCookie ck;
tkt = new FormsAuthenticationTicket(1, txtUserName.Value, DateTime.Now,
DateTime.Now.AddMinutes(3), chkPersistCookie.Checked,
email + "@ticket");
cookiestr = FormsAuthentication.Encrypt(tkt);
ck = new HttpCookie(FormsAuthentication.FormsCookieName, cookiestr);
if (chkPersistCookie.Checked)
ck.Expires = tkt.Expiration;
ck.Path = FormsAuthentication.FormsCookiePath;
Response.Cookies.Add(ck);
string strRedirect;
strRedirect = Request["ReturnUrl"];
if (strRedirect == null)
strRedirect = "MyAccount.aspx";
Response.Redirect(strRedirect, true);
}
else
Response.Redirect("logon.aspx", true);
Register.aspxコード:
private bool RegisterUser(string name, string surname, string email, string phone, string pass)
{
SqlConnection conn = new SqlConnection(@"Data Source=Server\SQL;Initial Catalog=Db;Integrated Security=True; User ID=user; Password =pass;");
conn.Open();
string insertQuery = @"INSERT INTO Users (Email, Name, Surname, Phone, Manager, Rank, Password)
VALUES (@Email, @Name, @Surname, @Phone, @Manager, @Rank, @Password)";
SqlCommand cmd = new SqlCommand(insertQuery, conn);
cmd.Parameters.Add("@Email", email);
cmd.Parameters.Add("@Name", name);
cmd.Parameters.Add("@Surname", surname);
cmd.Parameters.Add("@Phone", phone);
cmd.Parameters.Add("@Manager", "Test@Test.com");
cmd.Parameters.Add("@Rank", "1");
cmd.Parameters.Add("@Password", pass);
try
{
int rowsAffected = cmd.ExecuteNonQuery();
}
catch (Exception e )
{
throw;
}
finally
{
cmd.Dispose();
insertQuery = string.Empty;
}
すべてが完璧です。今私が欲しいのはMyAccount.aspxのPage_Loadにあります:
- クッキーを取得する
- ユーザーの役割を確認する
- ユーザーの役割に基づいて、必要なWebサイトのコンテンツを表示します。
しかし、私はそれを行う方法がわかりません。
- ユーザーロールを確立するためにCookieを参照する必要がありますか?
- ユーザーの役割に基づいてHTMLを生成するにはどうすればよいですか?
ありがとう!