我想在c#代碼隱藏中使用Response.Write
方法調用jQuery對話框。我試着用RegisterScriptBlock
Response.Write在c#代碼隱藏中調用jQuery對話框
Response.Write("<script> $(document).ready(function() {$('#divOutputWindow').html('You are not authorised to view this Page..!!').dialog({title: 'Notice...',show: 'slide',hide: 'blind',modal: true,buttons: {'Ok':function(){window.location = 'Default.aspx';}}});});</script>");
所有我的jQuery已經適當地包括,因爲我能夠從我的JS文件調用對話框。 ID:divOutputWindow
存在於.aspx頁面
仍然無法看到jQuery對話框。
P.S. :我的.aspx頁面不包含<form>
標記因此RegisterScriptBlock
不能工作
@RandomWebGuy但用戶新增
<form id="frmUserManagement" runat="server">
必須得到一個消息,所以他已經被重定向? – Shaggy