msg box for web development

  • Thread starter Thread starter Guest
  • Start date Start date
Is it possible to popup a messagebox on a web page with .net code?

ClientScript.RegisterStartupScript(this.GetType(), "hello",
"<script>alert('Hello');</script>");
 
Back
Top