Using Master pages in asp.net
Gridview Itemtemplate when i was clicking Button( Button is in command Argument)
protected void imgbtnEditReport_Command(object sender, CommandEventArgs e)
{
string createdby= e.CommandName.ToString();
if(createdby==usrname)
{
.....
}
else
{
Response.Write("<script>alert('You have no Permission to Edit this Report')</script>");
}
when this Alert is calling, the page of the css style is changing
changing font-size, font-family...
how to solve this problem please send me the reply
Thank u