更新面板中的 ASP.NET VB 回发
我试图在这个错误上加载一个 JS 函数(关闭加载覆盖和弹出窗口应该出现错误)。当我尝试显示标签时,它可以正常工作(当然它被覆盖层覆盖)。
Me.lblerrormsg.Visible = True
我尝试了 3 种不同的方法来注册脚本:
Dim errorScript = "<script>alert('WTF');</script>" '<-- not even this works
Page.ClientScript.RegisterClientScriptBlock(Page.GetType(), "errorDemoManual",
errorScript, True)
'Tried this one with the Panel & Page itself...
ScriptManager.RegisterStartupScript(pnlPatientInfo, pnlPatientInfo.GetType(),
"ErrorDemo", errorScript, True)
ScriptManager.RegisterStartupScript(Page, Page.GetType(), "errorScript",
errorScript, True)
没有一个工作......我在这里缺少什么吗?