Is it OK to use __doPostBack() or it is not recommended because it is generated from ASP.Net and we are not sure if they changed it in a next version of ASP.Net.
|
|
||||
|
|
|
I would advice against it, since it's internal stuff of Instead, what I'm doing when I need to "manually" trigger PostBack is adding hidden "server side" button with the proper OnClick:
Then the JS is:
This way I don't care how post back happens, I just trigger the natural flow of events. |
|||
|
|
|
You should not call it directly. You should generate the javascript call by using functions in This will ensure that it's always compatible. |
|||
|
|
|
They probably won't change it, but why call it directly? I you do need to trigger the postback directly it's recommended to use the Page.ClientScript functions tenfour described. |
||||
|
|
|
I think its perfectly fine to use directly, and have used it without fail, its just a javascript function after all. |
|||
|