14
votes
6answers
5k views
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 text on the page once they change. I use JQuery which is really really …
13
votes
6answers
4k views
jQuery $(document).ready and UpdatePanels?
I'm using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in $(document).ready . For example:
$(function() {
$('div. …
12
votes
4answers
3k views
ASP.NET MVC controller actions that return JSON or partial html
I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page as …
11
votes
9answers
961 views
Any downsides to using ASP.Net AJAX and JQuery together
We are planning to use the JQuery library to augment our client side JavaScript needs.
Are there any major issues in trying to use both ASP.Net AJAX and JQuery? Both libraries se …
10
votes
5answers
4k views
One Update Panel vs. Multiple Update Panels
I have an ASP.NET web page that displays a variety of fields that need to be updated best on certain conditions, button clicks and so on. We've implemented AJAX, using the ASP.NET …
9
votes
6answers
434 views
Is there any reason why MicrosoftAjax.js is not minified?
I compress my own JS using YuiCompressor, but is there any reason why MicrosoftAjax.js not minified? Or is there some setting to say run the compressed version of it (if there is a …
8
votes
3answers
1k views
Pros and cons of MS Ajax vs. jQuery in an ASP.NET MVC app?
Now that RC1 is out I need to decide once and for all whether to use MS Ajax libraries or just jQuery for AJAX requests. The application is a new application. Essentially the way I …
8
votes
1answer
407 views
How can you tell if a method is being run in UpdatePanel postback?
How can I tell if a method is running in the context of an AJAX postback (i.e as the result of a UpdatePanel (asynchronous) postback)?
According to egoldin Page.IsAsync is a very …
8
votes
10answers
2k views
ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom
Hi,
If given the choice, which path would you take?
1. asp.net webforms + asp.net ajax
or
asp.net mvc + ajax framework of your choice (jquery, yui, prototype, etc).
Focus poi …
7
votes
5answers
4k views
FileUpload control inside an UpdatePanel without refreshing the whole page?
According to Microsoft the FileUpload control is not compatible with an AJAX UpdatePanel.
I am aware that a PostBackTrigger can be added to the submit button of the form like thi …
6
votes
6answers
2k views
Extending Forms Authentication Timeout When Making AJAX Calls With jQuery
I'm looking to rewrite a pretty intensive CRUD type ASP.NET page to utilize ajax calls (specifically jQuery ajax). My concern in doing this is that the user may be on this page lo …
6
votes
2answers
3k views
Programmatically Adding User Controls Inside An UpdatePanel
I'm having trouble dynamically adding controls inside an update panel with partial postbacks. I've read many articles on dynamic controls and I understand how to add and maintain t …
5
votes
1answer
766 views
How to control which JavaScript gets run after UpdatePanel partial postback endRequest?
I know I can hook into the client side events to run JavaScript after every partial postback; however, I want to do something like this:
protected void FooClicked(object sender, E …
5
votes
5answers
307 views
Are there any ASP.Net MVC reference applications
Hi,
I am trying to learn ASP.Net MVC framework and I was wondering if there were any good reference applications that I could use to learn about implementing ASP.Net as well as be …
5
votes
4answers
503 views
jQuery vs MicrosoftAjax in ASP.NET MVC
Under what circumstances would you use MicrosoftAjax over jQuery in an ASP.NET MVC application?
According to Scott Cate in this podcast Object Oriented AJAX with Scott Cate Micros …
