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 7430291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:06:56+00:00 2026-05-29T09:06:56+00:00

I want to make a request to asp.net page using jQuery.get() . How should

  • 0

I want to make a request to asp.net page using jQuery.get().

How should the Url format be, and how do I get the parameters which I sent with the data?

I tried like this:

$.ajax({
    type: "POST",
    url: "sendEmail.php",
    data: "{name:'" + name + "', message:'" + msg + "', mailTo :'" + to + "' }",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function () {
        $('#email_form').html("<div id='message'></div>");
        $('#message').append("<p>We will be in touch soon.</p>")
            .hide()
            .fadeIn(1500, function () {
            $('#message').append("<img id='checkmark' src='images/check.png' />");
        });
    });
});

but i want to make a call in asp.net.

  • 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-29T09:06:57+00:00Added an answer on May 29, 2026 at 9:06 am

    jQuery.get() – Load data from the server using a HTTP GET request

    documentation – http://api.jquery.com/jQuery.get/

    $.get(
       // your aspx page
       "yourpage.aspx",
    
       // object literal used to populate query string
       { param1: "foo", param2: "bar" },
    
       // capture response in callback
       function(data){
         alert("Results: " + data);
       }
    );
    

    To access the parameters from the Code-Behind use:

    HttpContext.Current.Request.QueryString["param1"].ToString();

    or more succinctly:

    Request.QueryString["param1"].ToString();

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using asp.net and want to make it possible for the user to set
In my ASP.NET application, I want to make a POST request out to a
I want make datetimepicker in my project. Using jquery how it is possible? I
I am using asp.net mvc, C# and jquery. My site is uses ajax heavily.
I'm planning to use some session variables on an intranet ASP/VB.NET page, and want
I have an ASP.NET page (WebForm) on which I set the content of a
If I want to use ASP.Net without the Microsoft AJAX Control Toolkit or JQuery
My ASP.NET web app runs fine under IIS 7.5. But I want to make
We are building asp.net application in which we want to log the received data
I'm new to Django and from ASP.NET MVC. I just want to make a

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.