.net中 使用指令碼

iDotNetSpace發表於2009-02-05

方法1:用於UpdatePanel中:
System.Web.UI.ScriptManager.RegisterClientScriptBlock(UpdatePanel1, UpdatePanel1.GetType(), "", "alert('OK');", true);

方法2:在已呈現的頁的頂部新增一個指令碼塊。
                ClientScriptManager cs = Page.ClientScript;
                cs.RegisterClientScriptBlock(this.GetType(), "sec", " secBoardIndexPro(1);");


方法3:背景不是空白.RegisterStartupScript. 方法新增的指令碼塊在頁面載入完成但頁面的 OnLoad 事件引發之前執行。

                ClientScriptManager cs = Page.ClientScript;
                cs.RegisterStartupScript(this.GetType(), "NoFile", " alert('請上傳圖片!');");
               
方法4:
        Response.Write("

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-545376/,如需轉載,請註明出處,否則將追究法律責任。

相關文章