|
Yeah, actually, it looks like you're well upon your way in the right direction. I'd say it's only one line causing this bug you're seeing.
Response.Redirect("home.aspx")
I don't know your app setup well enough to tell you exactly what the correct code should be. My first guess is "/home.aspx" because the authentication code is likely to be in your App_Code folder? The way the redirect is coded, it wants your home page to be in the same folder, whatever that might be.
|