Click here to Skip to main content
16,013,642 members
Home / Discussions / C#
   

C#

 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart6-Dec-06 22:59
quiteSmart6-Dec-06 22:59 
GeneralRe: prompt message box on web page using C# Pin
mohd imran abdul aziz6-Dec-06 23:45
mohd imran abdul aziz6-Dec-06 23:45 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:40
quiteSmart7-Dec-06 1:40 
GeneralRe: prompt message box on web page using C# Pin
mohd imran abdul aziz7-Dec-06 2:28
mohd imran abdul aziz7-Dec-06 2:28 
AnswerRe: prompt message box on web page using C# Pin
Bhupi Bhai6-Dec-06 22:50
Bhupi Bhai6-Dec-06 22:50 
GeneralRe: prompt message box on web page using C# Pin
jdkulkarni6-Dec-06 22:54
jdkulkarni6-Dec-06 22:54 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart6-Dec-06 23:14
quiteSmart6-Dec-06 23:14 
GeneralRe: prompt message box on web page using C# Pin
jdkulkarni6-Dec-06 23:21
jdkulkarni6-Dec-06 23:21 
Try using this.
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data;
using System.Data.Sql;
using System.Data.SqlClient;
using System.Windows.Forms;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {        
        MessageBox.Show("Hi");
    }
}

Main thing is how MesageBox.Show("") will generate a dialog box at client side? MessageBox object is very specific to desktop. If you have tried the same I'll like to see that code.

Jayant D. Kulkarni
Brainbench Certified Software Engineer in C#, ASP.NET, .NET Framework and ADO.NET

GeneralRe: prompt message box on web page using C# Pin
Bhupi Bhai6-Dec-06 23:32
Bhupi Bhai6-Dec-06 23:32 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code6-Dec-06 23:35
Tamimi - Code6-Dec-06 23:35 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart6-Dec-06 23:43
quiteSmart6-Dec-06 23:43 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code6-Dec-06 23:49
Tamimi - Code6-Dec-06 23:49 
GeneralRe: prompt message box on web page using C# Pin
mohd imran abdul aziz7-Dec-06 0:01
mohd imran abdul aziz7-Dec-06 0:01 
GeneralRe: prompt message box on web page using C# Pin
Bhupi Bhai7-Dec-06 0:08
Bhupi Bhai7-Dec-06 0:08 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code7-Dec-06 0:46
Tamimi - Code7-Dec-06 0:46 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 0:57
quiteSmart7-Dec-06 0:57 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:00
quiteSmart7-Dec-06 1:00 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code7-Dec-06 1:12
Tamimi - Code7-Dec-06 1:12 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:16
quiteSmart7-Dec-06 1:16 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code7-Dec-06 1:24
Tamimi - Code7-Dec-06 1:24 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:33
quiteSmart7-Dec-06 1:33 
GeneralRe: prompt message box on web page using C# Pin
Tamimi - Code7-Dec-06 1:44
Tamimi - Code7-Dec-06 1:44 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:48
quiteSmart7-Dec-06 1:48 
GeneralRe: prompt message box on web page using C# Pin
Bhupi Bhai7-Dec-06 1:45
Bhupi Bhai7-Dec-06 1:45 
GeneralRe: prompt message box on web page using C# Pin
quiteSmart7-Dec-06 1:50
quiteSmart7-Dec-06 1:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.