therenis no way to give a message box in asp.net like stand alone
applications. the problem is the page creating in the server, excecute at
the client. we need to send the message in to client anyway.
so u have to use javascript...
when u need to run the client side code...
as an example, i need to give a simple message "Hello" to the user when
loading the page...
what i need to do is...
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
string strMessage = "<script
language=javascript>alert('Hello');</script>"
Response.Write(strMessage);
}
i think you can now arrange your code as you need....
CMA