Questions tagged [asp.net-mvc-ajax]

118 questions
1
vote
3 answers

Unable to Update a Label.HiddenFor field in ASP.net MVC after getting Ajax Response

In my ASP.net MVC Application. I am facing a problem and really struggling for it. I have an edit form in a View , in that i have a label which is defined as: <% using (Ajax.BeginForm("AjaxEdit", "Home", new AjaxOptions { OnSuccess = "Success",…
Sai Avinash
  • 4,523
  • 16
  • 50
  • 93
1
vote
1 answer

Ajax request randomly aborted in IE

I'm having an intermittent problem with my Ajax call in IE9. Here is my code $.ajax({ url: buildUrl('ActiveTasksTable/' + $('#Id').val()), type: "POST", cache: false, data: data, traditional: true, success: function (data)…
heymega
  • 8,395
  • 5
  • 38
  • 56
1
vote
1 answer

Can a partial view be used to do Ajax item updates?

I have a table built from a list of defect codes. Can part of each row load a sub-table item complete with submit buttons? Sample table:
CodeDescription Impact to your customers Impact to your…
1
vote
0 answers

pass data from view to controller in asp.net mvc using ajax

I want to pass form data from a view to controller action. But I am getting a problem that after clciking the button , which calls the ajax method , nothing is happening. This is my ajax code :