Message box does not showup

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Dear All,
I have used vb.net code to generate message box from my .vb codebehind file
for my asp.net project and it works fine when offline in my localhost but
after I upload the project in web server I can not get the message box from
the client side and the page hangs up.
My message box code is:
Dim MsgBox As System.Windows.Forms.MessageBox
MsgBox.Show("You have updated successfully", "www.emobileb2b.Net",
Windows.Forms.MessageBoxButtons.OK, Windows.Forms.MessageBoxIcon.Error,
Windows.Forms.MessageBoxDefaultButton.Button1,
Windows.Forms.MessageBoxOptions.ServiceNotification)

How can I get the message box online?
---Sudip
 
Back
Top