J
Jay
I've used Forms authentication in a number of ASP.Net
projects, but having a new problem. My Login.aspx
page has a link to a page for the registration
wizard, but won't go there when the hyperlink
is clicked. I use IE7.
For the Login.aspx page, I have a simple
Login control as follows:
<asp:Login
ID="Login1"
CreateUserText="Register"
CreateUserUrl="~/Register.aspx"
Runat="server"
/>
The Register.aspx page has a CreateUser
Wizard configured as follows:
<asp:CreateUserWizard
id="CreateUserWizard1"
ContinueDestinationPageUrl="~/Default.aspx"
runat="server"
/>
My Web.config file has the following:
<authorization>
<deny users="?" />
</authorization>
and
<authentication mode="Forms">
<forms protection="All" longinUrl="Login.aspx" />
</authentication>
For IIS Authentication, I have Forms Authentication
enabled and Anonymous, ASP.NEt, and Basic
Authentication disabled.
On my Login page, if I click the Register hyperlink,
redirection does not occur.
Anybody see what I'm doing wrong?
projects, but having a new problem. My Login.aspx
page has a link to a page for the registration
wizard, but won't go there when the hyperlink
is clicked. I use IE7.
For the Login.aspx page, I have a simple
Login control as follows:
<asp:Login
ID="Login1"
CreateUserText="Register"
CreateUserUrl="~/Register.aspx"
Runat="server"
/>
The Register.aspx page has a CreateUser
Wizard configured as follows:
<asp:CreateUserWizard
id="CreateUserWizard1"
ContinueDestinationPageUrl="~/Default.aspx"
runat="server"
/>
My Web.config file has the following:
<authorization>
<deny users="?" />
</authorization>
and
<authentication mode="Forms">
<forms protection="All" longinUrl="Login.aspx" />
</authentication>
For IIS Authentication, I have Forms Authentication
enabled and Anonymous, ASP.NEt, and Basic
Authentication disabled.
On my Login page, if I click the Register hyperlink,
redirection does not occur.
Anybody see what I'm doing wrong?