With AutoPostBack=false
, how do I trigger the postback that would have executed after running some JavaScript?
Asked
Active
Viewed 1,023 times
2
1 Answers
3
You can call __doPostback
(I think that is the name, check for it in the source of the rendered page) method manually from JavaScript.

µBio
- 10,668
- 6
- 38
- 56
-
It is __doPostBack() - Here is a good link to learn its usage - http://aspalliance.com/895 – Hari Pachuveetil Sep 16 '10 at 22:29