1st make a page colled
login.aspx then after verify & to make user OK u need code like follow:
Code:
FormsAuthentication.SetAuthCookie(UserID, false);
Session.Timeout = 30;
Response.Redirect(Request.QueryString.Get("ReturnUrl"));
of corse u will need to set ur Web.Config file as follow too:
Code:
<authentication mode="Forms">
<forms name="logins" loginUrl="login.aspx" protection="All" timeout="20" />
</authentication>
<authorization>
<allow users="t" />
<deny users="?" />
</authorization>
HTH.
Always:),
Hovik Melkomian.