asp.net form 验证问题
测试工程:
Login.aspx
Default.aspx
First.aspx
Second.aspx
web.config
Global.asax
代码:
Login.aspx
C# code:
protected void Submit_Click(object sender, EventArgs e)
{
if ((this.UserEmail.Text == "1") && (this.UserPass.Text == "2"))
{
//Create Authentication Ticket
FormsAuthenticationTicket authTicket = new
FormsAuthenticationTicket(1,
this.UserEmail.Text.Trim(),
DateTime.Now,
DateTime.Now.AddMinutes(HttpContext.Current.Session.Timeout),
this.Persist.Checked,
this.UserEmail.Text.Trim(), "/");
string encryptedTicket = FormsAuthentication.Encrypt(authTicket);
HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket);
authCookie.Expires = DateTime.Now.AddMinutes(HttpContext.Current.Session.Timeout);
Response.Cookies.Add(authCookie);
Response.Redirect("Default.aspx");
}
else
this.Msg.Text = "Invalid credentials. Please try again."
相关问答:
我在一个ASPX页面中用 <!-- #include file="top.asp"-->嵌套了一个asp页面,但在点击按钮提交表单的时候没有任何反应,是不是两个FORM的原因造成的,top.asp里面也有一个form,把嵌套去掉的话,运行 ......
本人使用swfobject.js在本机可以正常播放,但发布到win2003服务器就无法播放,网上找了许多都说需要配置MIME类型,我配置了也没有成功,请高手指点一下
服务器是否支持,路径是否正确
有的服务器可能不支持
......
RT。很多地址都打不开或不能下载了
有资源的朋友给个地址。。只要下载后是我想要的内容 50分献上!
谢谢!
沙发我先坐!
帮顶
帮顶
没听说过哦
JF
好像19没有的,不全。
好多集都不能下。。
......
正在学习这个东东 感觉很多地方不是很懂 正在努力 散点粉给asp.net的同仁们 求教好的学习资料 谢谢
参考
asp.net/mvc上有很多内容。
最近也在看。
同聊。
JF,3Q
比我有前途, 我至少目前 ......
在弹出框中点击一个按钮,怎么调转到另一个浏览器,并且在该浏览器打开两个页面
你的意思应该是
response.write("<script>alert('确认'); window.location.href('xxxx.aspx'); </script>"); ......