我在我的asp.net/c#頁面中有一個簡單的gridview
控件我想顯示一條消息,顯示刪除我的行時「刪除成功」我嘗試使用此但它沒有效果。
我的代碼是這個..無法使用代碼隱藏將腳本插入到asp頁面
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
感謝很多的div標識...它工作得很好:) – 2013-02-15 07:52:01
請接受anenswer then – Moons 2013-02-15 07:55:39