Check out this example:
http://www.codeproject .com/csharp/nitinsysteminfo .asp...
User Profile
Collapse
-
Redirect from start page while using Forms authentication
Is it possible to redirect to another page in your application from the start page BEFORE the user has been authenticated if you're using FORMS authentication? I can't seem to get it to work.
Simple example: In your start page simply try to redirect...
private void Page_Load(objec t sender, System.EventArg s e)
{
if (!IsPostBack) // or is. doesn't matter.
{
Response.Redire ct(APageInYourA pplication.aspx );...
No activity results to display
Show More
Leave a comment: