G
Guest
Hi,
in asp.net , I set the start page to "myStartingPage.html"
when user get authenticated and the cookie is created, the following
statement is supposed to redirect him to the original requested url:
....... ..... .... ...
Dim url As String = FormsAuthentication.GetRedirectUrl(userID, true)
Response.Redirect(url)
but url value is always = "default.aspx" and there is no "default.aspx" in
the whole application.
isn't "myStartingPage.html" supposed to be the requested url , or I'm wrong ?
and how can I set the value of the default page to point to
"myStartingPage.html" ?
<authentication mode="Forms">
<forms name="exitinterviewCookie" protection="All" timeout="60"
loginUrl="Login.aspx" />
</authentication>
thanks
in asp.net , I set the start page to "myStartingPage.html"
when user get authenticated and the cookie is created, the following
statement is supposed to redirect him to the original requested url:
....... ..... .... ...
Dim url As String = FormsAuthentication.GetRedirectUrl(userID, true)
Response.Redirect(url)
but url value is always = "default.aspx" and there is no "default.aspx" in
the whole application.
isn't "myStartingPage.html" supposed to be the requested url , or I'm wrong ?
and how can I set the value of the default page to point to
"myStartingPage.html" ?
<authentication mode="Forms">
<forms name="exitinterviewCookie" protection="All" timeout="60"
loginUrl="Login.aspx" />
</authentication>
thanks