本文介绍了我想在我的网站上增加限制.我应该遵循什么步骤来做到这一点?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的网站有菜单主页,登录/注册,服务
如果用户未登录并单击服务"选项卡,则会出现对话框,提示您必须登录.
My webite have menu Home,Login/Register,Services
I want if user is not logged in and clicks on services tab, dialog box should appear saying you have to login.
How to do this?
推荐答案
<location path="secure">
<system.web>
<authorization>
<deny users="?"/>
<deny users="jhon"/>
</authorization>
</system.web>
</location>
secure是一个包含安全Web表单的文件夹.
secure is a folder which contains your secure webforms.
<authentication mode="Forms">
<forms loginUrl="Default.aspx"
protection="All"
timeout="30"
name=".ASPXAUTH"
path="/"
requireSSL="false"
slidingExpiration="true"
defaultUrl="default.aspx"
cookieless="UseDeviceProfile"
enableCrossAppRedirects="false" >
<credentials passwordFormat="Clear">
<user name="kim" password="kim@123"/>
<user name="jhon" password="jhonn"/>
</credentials>
</forms>
</authentication>
这篇关于我想在我的网站上增加限制.我应该遵循什么步骤来做到这一点?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!