在控件的属性中,有LogoutAction和LogoutPageUrl两个属性,可以来设定注销时是仅仅刷新当前页面、转向到某个页面或者转向到登录页面。
LoginPageUrl在web.config中设置的。如果是用Form验证登录,缺省的web.config是这样写的:
Code
<system.web>
<authentication mode="Forms" />
</system.web>
<system.web>
<authentication mode="Forms" />
</system.web>
需要修改成如下的样子:
Code
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/member/login.aspx"></forms>
</authentication> </system.web>
<system.web>
<authentication mode="Forms">
<forms loginUrl="~/member/login.aspx"></forms>
</authentication> </system.web>