August 23, 2002 - Popping Up Message Boxes from the Server
August 23, 2002 Popping Up Message Boxes from the Server Tips: August 2002
Yehuda Shiran, Ph.D.
|
OK
button on two consecutive message boxes:
import System.Windows.Forms;
System.Windows.Forms.MessageBox.Show("Hello! Press the OK button");
MessageBox.Show("Doing fine! Now press the button again.");
The following command-line window shows the code listing, the compilation command of this code (col116ex4.js
), the execution command, and the first message box that pops up. The second command-line window below shows the second message box that pops up after the user clicks the OK
button on the first message box.To learn more about JScript .NET and ASP.NET, go to Column 116, JScript .NET, Part IX: Displaying Information.