post back

  • Thread starter Thread starter ven
  • Start date Start date
V

ven

what method do post back of page in asp.net ??
i know about autopostback but i need method that make post back when i wanna
do it

thank`s

Pat
 
A PostBack is caused by a combination of putting some event information into
a couple of hidden fields via JavaScript, and then submitting the form. Of
course, you could just submit the form. And, of course, this all happens on
the client-side browser.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living
 
If you really want to create PostBack request on the client side from your
server side code for certain things, Check out help for
GetPostBackEventReference. Of course, that is only part of the puzzle. The
example in there might get you started.
 
Back
Top