Force a PAge postback

  • Thread starter Thread starter Tim Harmon
  • Start date Start date
T

Tim Harmon

How would I force a page post back to then use the page parameters to
collect sellected control states like check boxes to be used in another asp
page?
 
You'll need to be more specific. Do you mean from javascript?

Asp.net triggers a postback by calling the __doPostBack('EventTarget',
'EventArgument') javascript function... which does a form submit. You
can create your own function just like it... or call __doPostBack if
you are sure it will be on the page. Use "view source" to see the code.
 
Back
Top