call the PostBack MANUALLY with script!

  • Thread starter Thread starter Massimo
  • Start date Start date
M

Massimo

Is possible call the PostBack of an asp page by code? The result I want to
obtain is the itself one as the pressure of a button with "submit"! Thanks
 
Is possible call the PostBack of an asp page by code? The result I want to
obtain is the itself one as the pressure of a button with "submit"! Thanks

just do a submit() of the form:
document.forms[0].submit()
 
Back
Top