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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T04:11:52+00:00 2026-06-16T04:11:52+00:00

I want to send FormCollection to Ajax function. So this is my Ajax function

  • 0

I want to send FormCollection to Ajax function.

So this is my Ajax function

function checkProductAttribute(productVariantId) 
{

  var form = $("product-details-form").serialize();

      $.ajax({

                    cache:false,
                    type: "POST",
                    dataType: 'html',
                    url: "@(Url.Action("CheckProductVariantToCart", "ShoppingCart"))",
                    data: { "productVariantId": productVariantId, "shoppingCartTypeId": 1, "form": form },
                    success: function (msg) {

                            if(msg == 'true' )
                            {

                    returnVal = true;
                    }
                    else
                    {
                    returnVal = false;
                    }

                    },
                    error:function (){

                     returnVal = false;
                        alert("fail");

                    }  
                });

   return true;
}

And this is my controller

public bool CheckProductVariantToCart(int productVariantId, int shoppingCartTypeId, FormCollection form)
{   
     //Somthing here
     return true;
}

my problem is
-How to sent FormCollection thought the Ajax function?

  • 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-16T04:11:53+00:00Added an answer on June 16, 2026 at 4:11 am

    serializing the form is correct. You can send this to the Controller and it will auto bind to the FormCollection. There are a few things to look out for

    var form = $("product-details-form").serialize();
    

    In this selector you need to specify if you are looking by class(.) or id (#). i.e. $("#product-details-form).serialize(); I am guessing if you are debugging your javascript this variable is not storing anything? Right now it is looking for a tag which probably doesn’t exist. Here is another question describing this.

    second, make sure that your form elements contain a name attribute. Serialize will only serialize elements that have a name attribute set.

    In the end, your form variable should contain a string that looks like myTextInput=helloworld&name=user1807766 which will be changed into a FormCollection on the server.

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

Sidebar

Related Questions

I send a form via jquery ajax. I do not only want to send
I want send a form as soon as the page is loaded. All variables
I want to send a string data with jquery load function but its not
I want to send data from my Windows form to client wep page(.aspx).Pls help
i have one form and i want send data when i have disable input.
How to get token in a function ? I want send it out of
I want to send a message to userID=3 by going to /MyController/Message/3 This executes
I have form and some fields and I want send these fields to the
When I submit a form by jQuery, like this: jQuery('#myForm').submit() ; I don't want
I have some action. I want send mail. usually i doing this way. public

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.