dialogbox ?

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi,

how can I show popup a dialog box in a WebForm ?


MessageBox.Show() gives me an error

thnx
Chris
 
Chris said:
Hi,

how can I show popup a dialog box in a WebForm ?


MessageBox.Show() gives me an error

thnx
Chris

With Javascript:

Page.RegisterStartupScript("codice","<script>alert('Help!');</"+
"script>");

AZ
 
Back
Top