How to close dialog box?

  • Thread starter Thread starter Ravi
  • Start date Start date
R

Ravi

Use client side botton to close the window.
ex:

<input type=button name="btn" value="Close Me" onClick="JavaScript:window.close();">
 
that's good if no server processing is needed.

Eliyahu

Ravi said:
Use client side botton to close the window.
ex:

<input type=button name="btn" value="Close Me"
onClick="JavaScript:window.close();">
 
Back
Top