views:

28

answers:

1

With AutoPostBack=false, how do I trigger the postback that would have executed after running some JavaScript?

+2  A: 

You can call __doPostback (I think that is the name, check for it in the source of the rendered page) method manually from JavaScript.

BioBuckyBall
It is __doPostBack() - Here is a good link to learn its usage - http://aspalliance.com/895
Floyd Pink