Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 .NET Membership 进行用户身份验证。
我想在登录后为特定用户设置默认页面。是否可以通过 web.config 或其他方式实现?
示例所有用户在登录后转到 Default.aspx
超级用户登录后转到 Admin.aspx。
谢谢
可以使用登录控制的 LoggedIn 方法:
protected void Login1_LoggedIn(object sender, EventArgs e) { if (Login1.UserName == "YourUserName") Login1.DestinationPageUrl = "YourDestinationPageUrl"; }