How to display the information in popup windows under ASP.NET envoronment?

  • Thread starter Thread starter JL
  • Start date Start date
J

JL

Hi all,

I want to display a processing result after processed by popup windows, for
example, i want to display the login name and login password in pop up
window after user applied the new account, which method can use in ASP.net
environment?

Thanks a lot
 
You can use Javascript to show a popup window with 'window.alert'. You can
then also use the RegisterClientScriptBlock() method to apply your
Javascript when the page loads after the new account is applied.


-Darrin
 
Back
Top