我正在使用表单身份验证。我的用户在登录时会重定向到一个页面(用web.config编写),但其中一些用户可能没有访问此默认页面的权限。在这种情况下,我希望他们重定向到另一个页面,但RedirectFromLoginPage方法总是重定向到web.config中的默认页面。我如何让用户登录,然后重定向到取决于某些条件的页面?
登录时的条件重定向
原标题:
最佳回答
SetAuthCookie
允许您发布身份验证cookie,但保留对导航的控制权。调用该方法后,您可以运行逻辑,将典型的ASP.NET重定向到您想要的任何位置。
问题回答
if(mc.GetfaalUsers(mm.UserName.ToString())=="True")
{
this.Page.ClientScript.
RegisterClientScriptBlock(this.GetType(), "key",
"alert( این نام کاربری فعال نشده است );", false);
FormsAuthentication.SignOut();
Response.Redirect("default.aspx");
}
相关问题
热门标签
- winforms
- combobox
- fogbugz
- java
- date
- internationalization
- asp.net
- iis
- url-rewriting
- urlrewriter
- c#
- enums
- ocaml
- haxe
- algorithm
- string
- viewstate
- .net
- c++
- c
- symbol-table
- mysql
- database
- postgresql
- licensing
- migration
- vb.net
- vb6
- declaration
- vb6-migration
- python
- psycopg2
- backup
- vmware
- virtualization
- gnu-screen
- authentication
- desktop
- excel
- xll
- cultureinfo
- regioninfo
- oracle
- client
- session
- download
- html
- virtual
- constructor
- scenarios
- perl
- full-text-search
- javascript
- ajax
- testing
- oop
- inheritance
- vim
- encapsulation
- information-hiding