我在我的 asp.net/c# 页面中有一个简单的gridview
控件我想显示一条消息,在删除我的行时显示“删除成功”我尝试使用它但它没有效果。
我的代码是这个..
script = string.Format(@"<script type='text/javascript'>alert('Successfully deleted');</script>");
if (Page != null && !Page.ClientScript.IsClientScriptBlockRegistered("alert"))
{
Page.ClientScript.RegisterClientScriptBlock(Page.GetType(), "alert", script);
}
谁能帮帮我,我是新手..
Thaks
-Vishu