Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
7k views

How to get an ASP.NET MVC Ajax response to redirect to new page instead of inserting view into UpdateTargetId?

I am using the Ajax.BeginForm to create a form the will do an ajax postback to a certain controller action and then if the action is successful, the user should get redirected to another page (if the ...
6
votes
2answers
160 views

Is there a good explanation on what ASP.NET MVC3 is doing with its ajax helpers and rendering unobtrusive javascript?

I'm trying to look for good (in-depth) explanation on what happens when you use MVC ajax helpers. What events and css classes get added. I can find sprinkle of info here and there but no overall ...
2
votes
1answer
2k views

Why UnobtrusiveJavaScriptEnabled = true disable my ajax to work?

I was doing a sample using MVC3 razor, and wrote this: <p> Show me the time in: @Ajax.ActionLink("UTC", "GetTime", new { zone = "utc" }, new AjaxOptions { UpdateTargetId = "myResults" ...
2
votes
2answers
247 views

how to update specific div data through ajax in asp.net mvc

how to update specific div data through ajax in asp.net mvc
2
votes
4answers
2k views

Trigger an asp.net mvc ajax refresh automatically every X minutes

I have a Refresh button on my page that will perform an asp.net mvc ajax post to update some of the content on the page. The refresh/update process can be long running (about 10-20 seconds). Right ...
1
vote
2answers
32 views

using ajax with dropdownlist mvc3 [closed]

is there any way to refresh some part of page (e.g div/span) on selection of dropdownlist option ... ?? please note i'm using razor syntax. if yes then please give some sample code thanks in ...
1
vote
0answers
57 views

Update more than one view in a MVC3 ajax ActionResult

I'm approaching to mvc3 developing but I'm not sure if what I want to do is the correct way to proceed... Let's say I have a CONTACTLIST where i show some contacts and in a right tablecolumn i have ...
1
vote
1answer
125 views

ASP.NET MVC 3 DateTime incorrect parsing on Ajax form submitting

I have textbox on my Ajax form which contains date-time formatted string in date format like 'dd.MM.yyyy', for example '21.11.2011'. When submitting form to controller action accept null in DateTime? ...
1
vote
1answer
781 views

MVC 3 Ajax.ActionLink Pass Parent Model Property

I have a view which displays a model eg: public class MyModel() { public string name {get;set;} public IList<Note> notes {get;set;} } The view displays all the notes for the model, i am ...
1
vote
2answers
633 views

jquery.validate lost on ajax replacement and only showing last error

I am using jquery.validate in MVC 2 with MicrosoftMvcJQueryValidation. I have data annotations on my model which is then being translated into jquery validators. I am using a modification to ...
1
vote
0answers
858 views

Grouping not working with ajaxically loaded telerik MVC Grid

i m using telerik extensions for .net mvc. in grid everything is working fine until i try to group the grid control based on some columns. actually my grid is not server bound (even it loads the grid ...
1
vote
1answer
170 views

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: <table><tr> ...
1
vote
2answers
740 views

ASP.NET MVC Ajax post to Action requiring authentication returns login view when user session has timed out

I am using the Ajax.BeginForm to create a form the will do an ajax postback to a certain controller action and then the response view is inserted into the UpdateTargetId. using ...
1
vote
1answer
563 views

Running a js function after ajax call puts incoming data to an element

I have an ajax link in my application: <head> <script type="text/javascript">function GoFurther() { ... }</script> </head> ... <%= Ajax.ActionLink("Go", "SomeAction", ...
0
votes
0answers
16 views

How to call an controller using ajax form

When i am calling a controller via ajax form, i get an 500(Internal Server error) but it dose not call acontroller
0
votes
1answer
30 views

mvc2 with ajax table enabling back button [closed]

I have created my application that has search form and below contains results for the search. Now i want to be able to add history, button back functionality. The problem is i am caught in infinitive ...
0
votes
0answers
12 views

Error 404 when I use AJAX function GET in a MVC , asp.net application

I have an input on my view in a MVC application in ASP.net which is defined so : <input id="txtName" type="text" class="inputStyle1" onkeyup="javascript:SearchMailAdresses();"/> Function ...
0
votes
1answer
223 views

Add a css class for Ajax Action link

How I can add a class for Ajax.ActionLink? @Ajax.ActionLink("Remove this photo","RemovePhoto","Admin",new{Id=Model.filename, @class="ActionClass"},new AjaxOptions{OnSuccess = "RemoveSuccess"}) but ...
0
votes
1answer
71 views

Is it possible to pass a generic model to a JsonResult action from an ajax call?

I'm creating a javascript function that will invoke ajax call to validate the model of a form. function ValidateModel(formID) { $.ajax({ url: '/Custom/ValidateModel', type: ...
0
votes
1answer
37 views

Preventing Execution on Child and Ajax Requests

we are using asp.net mvc-3 for our application. we populate a property of controller from db on initialize method of controller. i don't want this code to be executed on partial requests and ajax ...
0
votes
2answers
846 views

asp.net mvc ajax post - redirecttoaction not working

I used the following code in one of my controller; if (Request.IsAjaxRequest()) { return RedirectToAction("PreviewAndSendEmail"); } I debugged it and it comes to ...
0
votes
1answer
117 views

Showing both MVC Ajax calls and jQuery Ajax calls with one indicator

I have a web application that utilises both the MVC Ajax calls: Html.ActionLink() rendering as Sys.Mvc.AsyncForm.handleClick( in the page source and: jQuery Ajax calls, eg: $.post() Now I can ...
0
votes
2answers
46 views

asp.net mvc ajax

I'm using the dropdownlist html helper and would like to perform an ajax call to the server when the value changes. I have seen the jquery code dropdownlist.change... The problem I have is that I ...
0
votes
1answer
327 views

How to get the resulting JavaScript from AjaxOptions in ASP.NET MVC Framework?

I'm trying out ASP.NET MVC Framework and would like to create an ajax helper method. Basically this helper would act like ActionLink but without encoding its link text. It is rather trivial to write ...
0
votes
2answers
648 views

ASP.NET MVC shows ajax result in a new page instead of UpdateTargetId

I am using Ajax.BeginForm to make an ajax request but asp.net mvc displays results in a new page instead of the div I set in UpdateTargetId. I ensured that I have only one div with the same name on ...