vote up 1 vote down star

I have a LinkButton which is in a Panel that contains an UpdatePanel. When clicked, the only thing that happens is the Panel closes. I need to do a postback to the parent page. How do I do it ?

flag

1 Answer

vote up 0 vote down

Can you not set EnablePartialRendering to false when somebody clicks on the linkbutton causing it do a full postback and then later inthe code you can set it back to true?

link|flag
I don't get it. Where do I set that property? – KimWilson Aug 4 at 14:05
the ScriptManager control's EnablePartialRending property is set to True. This indicates that the page supports partial-page updates. You can use this property to turn this feature off if needed. – CodeToGlory Aug 4 at 16:04

Your Answer

Get an OpenID
or

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