hey guyz,
For vb,net there is a msgbox,...
for asp.net is there something that is similiar?
Printable View
hey guyz,
For vb,net there is a msgbox,...
for asp.net is there something that is similiar?
Hi!
I don't think there's a msgbox in asp.net in the way there's one used in winforms. You can use javascript alert- and other promptmessages to achieve similar functionality or write a msxbox type popup aspx class to display the info you want to relay.
tsami
Something like:
VB Code:
Page.RegisterStartupScript("script7","<script language=javascript>alert('poooo');</script>")