0

这是我的 aspx 文件:Default.aspx(我认为这无关紧要)

这是我的 C# 代码隐藏文件:Default.aspx.cs

这是我的调试输出。它表明 JavaScript 行之前的所有内容都已执行:

[4476] aspx.page: Begin Load 
[4476] : Number of fields = 2 
[4476] : Page to load = Login 
[4476] : Session matched the supplied GUID! 
[4476] aspx.page: End Load 

我完全迷路了。我真的很感激一些帮助!

4

1 回答 1

1

@Mike:如果您的页面中没有 ScriptManager,则 ScriptManager.RegisterClientScriptBlock 方法将不起作用,而是使用此:

ClientScript.RegisterClientScriptBlock(this.GetType(), "DummeyKey", "alert('Hi')", true);
于 2012-06-12T09:36:36.197 回答