C
Cirene
I have a subdir called "customer" that only allows authenticated users
(using web.config.)
In my login.aspx I allow them to pass username/password in query string.
Then I go to a default page.
Am I doing this right? It doesn't seem to authenticate in IE6, only IE7 and
Firefox.
If Membership.ValidateUser(request.querystring("User"),
request.querystring("Pwd")) Then
FormsAuthentication.SetAuthCookie(request.querystring("User"), True)
Response.Redirect("customer/MySecuredPage.aspx")
End If
If I run the same code in IE6, passing it a valid username & password, I get
auto redirected back to the login page, as if it's not authenticated. Any
idea what's wrong????
(using web.config.)
In my login.aspx I allow them to pass username/password in query string.
Then I go to a default page.
Am I doing this right? It doesn't seem to authenticate in IE6, only IE7 and
Firefox.
If Membership.ValidateUser(request.querystring("User"),
request.querystring("Pwd")) Then
FormsAuthentication.SetAuthCookie(request.querystring("User"), True)
Response.Redirect("customer/MySecuredPage.aspx")
End If
If I run the same code in IE6, passing it a valid username & password, I get
auto redirected back to the login page, as if it's not authenticated. Any
idea what's wrong????