2

我在我的 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

4

2 回答 2

0

请试试这个:

ScriptManager.RegisterStartupScript(this.Page , typeof(Page) , Guid.NewGuid().ToString() , "alert('Successfully deleted');" , true);

希望它可以工作

于 2013-02-15T07:46:21.000 回答
0

尝试这个...

代码

Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "popup();", true);

其中popup()是一个 javascript 函数。

脚本

function popup() {
    $("#popupdiv").fadeIn('slow');
 }

popupdiv是您可以根据您的要求设计的 div 的 ID

于 2013-02-15T08:18:12.497 回答