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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:17:28+00:00 2026-05-25T14:17:28+00:00

jQuery $.ajax() sends a list of URL parameter values as params[]=….. ASP.NET MVC 3

  • 0

jQuery $.ajax() sends a list of URL parameter values as “params[]=…..”

ASP.NET MVC 3 can’t parse those parameters in controller’s action because they are passed with “params[]” name

The example of such parameter is “targets%5b%5d=486F6D655C486F6D655C50656E6775696E732E6A7067”

I was able to add “traditional: true” to my own $.ajax() calls, but now the ajax calls coming from external plugin that I can’t change.

Is there a way to make ASP.NET MVC3 understand “not traditional” URL parameters that sends a list of values?

UPDATE: I also found another global jQuery property “jQuery.ajaxSettings.traditional = true;” will try it too.

  • 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-25T14:17:28+00:00Added an answer on May 25, 2026 at 2:17 pm

    You could write a custom model binder:

    public class MyModelBinder : DefaultModelBinder
    {
        public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            var values = bindingContext.ValueProvider.GetValue(bindingContext.ModelName + "[]");
            if (values != null)
            {
                return values.RawValue;
            }
            return base.BindModel(controllerContext, bindingContext);
        }
    }
    

    and then:

    public ActionResult Index([ModelBinder(typeof(MyModelBinder))]string[] targets)
    {
        ...
    }
    

    or register the model binder globally in Application_Start if you want it to apply to all string array action parameters:

    ModelBinders.Binders.Add(typeof(string[]), new MyModelBinder());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using jQuery.ajax(...) to retrieve JSON data from an ASP.NET MVC service. When
When I send a list of int's with jQuery like this: $.ajax('@Url.Action(Execute)', { type:
I have a jquery-ajax function that sends data to a php script and the
The jQuery ajax script below doesn't work on my site if url is without
I am making a jquery ajax call to an mvc controller. I want to
I am trying to send a jquery sortable list of items to my MVC
I have jQuery Ajax request that sends data to a PHP page that then
i send ajax requests with jquery, and i have a function: $('input').ajaxSuccess(function(e, xhr, settings)
In jQuery ajax function there is xhr option. Does someone know more details, usability
A jQuery AJAX request .post()s data to page.php, which creates $res and var_dump()s it.

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.