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.
Mark Rae [MVP] - 01 Feb 2008 22:36 GMT
> 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;
}

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
Radu - 04 Feb 2008 14:26 GMT
Thank you very much, Mark - this solved my problem. Have a great
day ! :-)
Alex.
> > Can someone, please, guide me out of this
>
[quoted text clipped - 11 lines]
> Mark Rae
> ASP.NET MVPhttp://www.markrae.net