Top "Asp.net-ajax" questions

A set of extensions to ASP.

Disable asp.net button after click to prevent double clicking

I have an ASP.NET button that I need to disable after the user clicks it to prevent double-clicking. Once …

javascript jquery asp.net asp.net-ajax
How to post ASP.NET MVC Ajax form using JavaScript rather than submit button

I have a simple form created using Ajax.BeginForm: <% using (Ajax.BeginForm("Update", "Description", new { id = Model.Id }, new …

javascript asp.net-mvc asp.net-ajax jquery
ASP.NET MVC modal dialog/popup best practice

I am looking for the most standard way to achieve modal dialogs in ASP.NET MVC. An example of what …

jquery asp.net-mvc asp.net-ajax modal-dialog
How to download a file through ajax request in asp.net MVC 4

Below is my code : ActionResult DownloadAttachment(student st) { var file = db.EmailAttachmentReceived.FirstOrDefault(x => x.LisaId == st.Lisaid); byte[] …

jquery json asp.net-mvc-4 asp.net-ajax
Full postback triggered by LinkButton inside GridView inside UpdatePanel

I have a GridView inside of a UpdatePanel. In a template field is a button I use for marking items. …

c# asp.net gridview asp.net-ajax updatepanel
Cross domain ajax request

I want to get the html respond page from the cross domain url. for this I am using the ajax …

html ajax jquery asp.net-ajax
How do I force full post-back from a button within an UpdatePanel?

How do I force full post-back from a button within an UpdatePanel?

c# .net asp.net asp.net-ajax
Rebinding events in jQuery after Ajax update (updatepanel)

I have several input and option elements on my page, each (well almost) have an event attached to update some …

asp.net jquery asp.net-ajax updatepanel
How to have a javascript callback executed after an update panel postback?

I'm using a jQuery tip plugin to show help tips when the user hovers certain elements of the page. I …

javascript asp.net-ajax updatepanel callback