public void ShowAlertMessage(String message)
{
string alertScript =
String.Format("alert('{0}');", message);
ScriptManager.RegisterStartupScript(this, typeof(Page), UniqueID, alertScript, true);
}
Function Call :
ShowAlertMessage("You Can not Enter This value");
{
string alertScript =
String.Format("alert('{0}');", message);
ScriptManager.RegisterStartupScript(this, typeof(Page), UniqueID, alertScript, true);
}
Function Call :
ShowAlertMessage("You Can not Enter This value");
No comments:
Post a Comment