asp.net multiple updatepanel

Go To StackoverFlow.com

0

I have multiple updatepanel in a page I want to update only 1 of them. I use the doPostBack but I pass on each page_load and I dont know witch one I click.

so how can I get the doPostBack args

I tryied putting an hidden field on my panel but, I lose the data on the postback.

any help

tank you

2012-04-04 19:33
by forX
what triggers the postback? The control that triggers the postback should be enough information - Claudio Redi 2012-04-04 19:41
look like this _doPostBack('ctl00......', 'panel0'); and I want to get the "panel0", so I can update only the right pane - forX 2012-04-04 19:47


0

You should be able to determine which control caused the PostBack (link).

2012-04-04 19:36
by CodeMonkey1313
my problem is all param seems empty. I get : page.Request.Params.Get ",, - forX 2012-04-04 19:40
",," is my get, I try to know wh - forX 2012-04-04 19:40
I try your links, the GetPostBackControl, but return nothin - forX 2012-04-04 19:45
Ads