Hi there,
I think it only looks like nothing is happening, but what I think is happening is this:
1. You access the Login page and click the Password recovery link
2. You're taken to ~/Pass.aspx
3. However, you need to be logged in on that page, so you're taken back to Login.aspx.
There are at least to ways around this:
1. Add the PasswordRecovery to the login page as well, and show / hide it depending on some condition.
2. Add a <location> tag to your web.config to unblock the Pass page, like this:
<location path="~/Pass.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
</configuration>
This section, placed near the end of the config file unblocks access to ~/Pass.aspx.
Hope this helps,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|