How to inject JS messagebox code without messing the looks of thepage ?

  • Thread starter Thread starter Radu
  • Start date Start date
R

Radu

Hi. I have this very big question mark: In the rowupdating event of a
gridview I need to cancel the updating and to inform the user why that
happens, like in this code:

protected void GridView1_RowUpdating(object sender,
System.Web.UI.WebControls.GridViewUpdateEventArgs e)
{
if (some condition)
{
string strMessage;
strMessage = "This record is not editable because blah-blah-blah !";
Response.Write("<script language='javascript'>alert('" + strMessage +
"');</script>");
e.Cancel = true;
}
}

It... works but it looks awful - first the whole screen goes blank,
and in front of this blank screen I can see my messagebox. After I
dismiss it, the screen gets populated as before, except that the font
is now probably twice as big as before !!!!???? (It is HUGE !)

Also, the cancel event is still not executed i.e. the user still sees
the UPDATE and the CANCEL link buttons, and he has to click on the
CANCEL one...... However, upon clicking on the CANCEL button, the
things go back in order (the font becomes normal again) (Huh ???)

Can someone, please, guide me out of this, (explain me what's
happening and how to do this properly) ?

Thanks a lot
Alex.
 
Can someone, please, guide me out of this

if (some condition)
{
string strMessage;
strMessage = "This record is not editable because blah-blah-blah !";
ClientScript.RegisterStartupScript(GetType(), "notEditable", "alert('" +
strMessage + "');", true);
e.Cancel = true;
}
 
Back
Top