vote up 0 vote down star

Hi,

Why does the ScriptManager ALWAYS insert the __doPostback method in javascript, even on an empty page where no controls can cause a postback?

Thank you

flag

1 Answer

vote up 0 vote down

It is because by default ScriptManager assumes partial rendering. You can disable it like this:

<asp:ScriptManager ID="sm" runat="server" EnablePartialRendering="false" />
link|flag
Thanks! I will disable partial rendering on pages not using an updatepanel. – pete Nov 5 at 22:40

Your Answer

Get an OpenID
or

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