Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5977607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:23:42+00:00 2026-05-22T21:23:42+00:00

This is the first time i am playing with Ajax. I am trying to

  • 0

This is the first time i am playing with Ajax. I am trying to just create a basic login at the moment. Anyways i have the following script..

     <script language = "javascript">
            function Login() {  

                       $.ajax({
                        type: "POST",
                        url: "ajax.aspx/Login",
                        data: '{' +
                                'username:"' + $('#username').val() + '",' +
                                'password:"' + $('#password').val() + '"' +
                               '}',
                        contentType: "application/json; charset=utf-8",
                        dataType: "json",
                        success: function(msg) {
                            alert("alert1");
                            var data = json_parse(msg.d);
                            alert("alert2");
                            if (!data.error) {
                                alert("No Error);
                            }
                            else {
                                alert(data.error);
                            }
                        },
                        error: function(msg) {
                            alert('Failure: ' + msg);
                        }
                    });         

            }
    </script>

For some reason it does not run anything after var data = json_parse(msg.d);

It shows the first two alerts but noting after.

the ajax page has the following `

[WebMethod]
public static string Login(string username, string password)
{
    return "{\"error\": \"No IDs\"}";
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T21:23:44+00:00Added an answer on May 22, 2026 at 9:23 pm

    Whats inside the function json_parse? That function could be the source of your error.
    A better method to parse JSON is like this.

    1. Go to Douglas Crockford’s Github JSON-js/json2.js and copy it
    2. Minify it at jscompress.com and copy the compressed code ( can skip this step )
    3. Paste it somewhere in your Application folder as json2.js
    4. Now reference the script at the page you are pulling data from
      <script src="path/to/script/json2.js" type="text/javascript"></script>

    5. Now inside the function, parse your JSON like this.
      var data = JSON.parse(msg.d);

    On an un-related side note, its better if you change your error like this to catch errors effectively.

    error: function (xhr, status, error) {
        alert(xhr.statusText);
    }
    

    Also, call WebMethod like this.

    [WebMethod]
    public static string Login(string username, string password)
    {
        JavaScriptSerializer js = new JavaScriptSerializer();
        dynamic obj = new ExpandoObject();
        obj.error = "No IDs";
        string str = js.Serialize(obj);
        return str;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my first time playing with both ajax and objects, so please go
I'm just playing around for the first time with jQuery's ajax functionality. I wanted
This is my first time playing around with SignalR. I am trying to build
This is my first time I need to create a cutscene system. I have
This is my first time with Web services. I have to develop web services
this is my first time posting here, I have a question which I have
This is the first time I'm trying random numbers with C (I miss C#).
This is my first time making a hash table. I'm trying to associate strings
This is the first time ever I'm using AJAX, and I want to do
This is my first time playing around with linq and I can't quite figure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.