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

  • SEARCH
  • Home
  • 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 7970247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:22:06+00:00 2026-06-04T07:22:06+00:00

Hello i need to send some data back to the server and i want

  • 0

Hello i need to send some data back to the server and i want to use the following code.

Does someone know if there is a limit on the dimension of the string sent with the following code

This is my js code:

 $(document).ready(function() {

          $.ajax({
              type: "POST",
              url: "test.aspx/PassBackdata",
              contentType: "application/json; charset=utf-8",
              data: "{'args': '" + Ldata + "'}",
                   dataType: "json",
                   success: AjaxSucceeded,
                   error: AjaxFailed
               });
           });


      };
  • 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-06-04T07:22:07+00:00Added an answer on June 4, 2026 at 7:22 am

    Since you are using POST the data you are sending to the server could be arbitrarily large and is controlled by the <httRuntime> element in your web.config:

    <!-- Limit the request size to 4MB -->    
    <httpRuntime maxRequestLength="4096" />
    

    and if you host in IIS7+ you should also use the <requestLimits> tag:

    <system.webServer>
        <security>
            <requestFiltering>
                <!-- Limit the request size to 4MB -->    
                <requestLimits maxAllowedContentLength="4194304" />
            </requestFiltering>
        </security>
    </system.webServer>
    

    Also I would recommend you using the JSON.stringify method to ensure that the data is properly encoded:

    $.ajax({
        type: "POST",
        url: "test.aspx/PassBackdata",
        contentType: "application/json; charset=utf-8",
        data: JSON.stringify({ args: Ldata }),
        dataType: "json",
        success: AjaxSucceeded,
        error: AjaxFailed
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello i need to know there my flash application is running. in object src
I'm writing some C++ code that will have to send data over TCP/IP. I
I'm trying to send mail from my application server using the following code FILE
hello i need to do the following: move a node from jstree to another
hello guys i need to sort some elements of integer in an integer array
I need to know how i can make a string like hello to Hello
My situation is explained in the code below. I need to send via a
I would like to use CouchDB to store some data for me and then
I need to send bunch of commands to the server on timer - like:
I want to send data to my Arduino board using Visual Studio and C.

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.