日期:2014-05-17 浏览次数:20477 次
禁止所有匿名访问:
<authentication mode="Forms">
<forms loginUrl="你希望他去的页面"></forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
<location path="可以访问的文件或目录">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
if (登录验证通过)
{
FormsAuthentication.SetAuthCookie(用户名, false);
if (Context.Request["ReturnUrl"] != null)
{
Response.Redirect(Context.Request["ReturnUrl"]);
}
else
{
Response.Redirect(FormsAuthentication.DefaultUrl);<