asp.net-mvc-ajax Questions
15
Solved
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 t...
Myasthenia asked 8/10, 2009 at 15:23
2
Solved
While doing a sample using MVC3 razor, I wrote:
<p>
Show me the time in:
@Ajax.ActionLink("UTC", "GetTime", new { zone = "utc" }, new AjaxOptions { UpdateTargetId = "myResults" })
@Ajax.A...
Westbound asked 6/3, 2011 at 2:29
2
I've a view page in which there's an HTML ActionLink. Now on click of that action link, i want to open a new popup window without closing the previous one. In this new popup window i want to show m...
Swaine asked 19/3, 2012 at 6:4
2
Solved
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"})
b...
Stibine asked 9/9, 2011 at 15:42
2
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 ex...
Kirin asked 3/11, 2011 at 15:29
2
Solved
I used the following code in one of my controller;
if (Request.IsAjaxRequest()) {
return RedirectToAction("PreviewAndSendEmail");
}
I debugged it and it comes to return line and but redirect ...
Pox asked 18/2, 2011 at 13:33
1
© 2022 - 2024 — McMap. All rights reserved.