vote up 0 vote down star

How to Avoid ASP.NET postbacks?

flag

2  
Avoid postbacks in general, avoid postbacks in a multiple dropdown scenario, or something else? Please be a bit more specific! – RichardOD Oct 22 at 7:27
RichardOD thanks for the interest,how to avoid postback in general? If I just remove the runat="server" attribute from the Form element,can i avoid postback. – rockrule Oct 22 at 7:30
2  
How you avoid postbacks depends... Where, when and why do you want to avoid postbacks? – Guffa Oct 22 at 7:42
Guffa,but i would like list of possible cases to avoid page postbacks.The question was asked by a supervisor to me and my answer was to use ajax.So would like to know all possible scenario if it could be generalized.thanks – rockrule Oct 22 at 7:46
You don't want to always avoid postbacks. It tends to hurt browser navigation, SEO, etc. AJAX is pretty general though :) – Thorarin Oct 22 at 8:11

3 Answers

vote up 1 vote down check

Use AJAX, UpdatePanels, JQuery:

http://www.asp.net/ajax/ should give you a good start.

link|flag
yea that is what i was going to say to.. ajax/jquery can perform some tasks without postback.. it depends on you specific situation to. your situation might be as eazy as if(!Page.IsPostback) //todo – Dejan.S Oct 22 at 7:30
vote up 0 vote down

Try using html controls if you want to avoid postbacks. ie., it doesn't post back to the server.

What is your exact requirement? You don't want to postback the control or you don't want to feel the postback of a page. If so, you can go for UpdatePanel in asp.net ajax and try using Conditional Update.

link|flag
i want to capture all postback scenario including control postback and avoid it. – rockrule Oct 22 at 7:51
vote up 1 vote down

Asp.NET is entirely based on Postbacks.

May be are you looking for partial page rendering and client side stuffs. If this is the case, you can have a look at Asp.NET Ajax.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.