Good morning!

I have a user login page "/Account/Login.aspx" which uses a custom I've included an tag for the user to reset their password - <a href="javascript:ConfirmPasswordChange();">Forgot Password?</a>

My post doesn't call my page "/Account/LoginMethods.aspx" (No breakpoint firing), but instead returns the result as the entire content of the user login page "/Account/Login.aspx" html

<script language="javascript" type="text/javascript">
            function ConfirmPasswordChange() {
                $("#ConfiormPasswordReset").dialog({
                    modal: true,
                    autoOpen: false,
                    autoResize: true,
                    title: "Reset Password",
                    draggable: true,
                    buttons: {
                        'Cancel': function () {
                            $(this).dialog("close");
                        },
                        'Continue': function () {
                            SendNewPassword();
                        }
                    }
                }).dialog("open");
                $('#ConfiormPasswordReset').focus();
            }

            function SendNewPassword() {
                $.post("/Account/LoginMethods.aspx", { UserEmail: $("#UserName").val() },
                    function (result) {
                        alert(result);
                    });
                $('#ConfiormPasswordReset').dialog("close");
            }
    </script>

Any Idea of the possible problem?

link|improve this question

It sounds like you're getting redirected server-side back to Login.aspx – Nick Craver Nov 19 '10 at 10:54
How do You read the UserEmail variable on the server side ? – Tony Nov 19 '10 at 10:54
It doesn't get to the .cs page, so it makes no difference how it is read – Byron Cobb Nov 19 '10 at 11:04
@Nick - Thank you, I was being stupid and forgot to allow my LoginMethods page access without credentials, so it was being redirected. Should I delete the question or answer it myself? – Byron Cobb Nov 19 '10 at 11:09
I added one below with a bit more context on the AJAX side, hope this helps others :) – Nick Craver Nov 19 '10 at 11:11
feedback

1 Answer

up vote 2 down vote accepted

It's likely that your LoginMethods.aspx page is rejecting the request, redirecting back to Login.aspx because you're lacking credentials. When you make an AJAX request, XmlHttpRequest transparently follows redirects, so it'll spit out whatever it finally ended up being redirected to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.