我只是想学习一些Asp.net Ajax的东西,并从我的C#脚本中调用javascript。
我有一个计时器,它触发一个调用超级简单的javascript警报功能的方法。 它还每10秒更新一次。现在它看起来我的代码应该工作。没有构建错误,没有例外,只是它不起作用。更新时间的C#部分。 javascript没有发出警报。
<%@ Page Language="C#" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<script runat="server">
protected void Page_load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Label1.Text = DateTime.Now.ToString();
}
}
protected void Timer1_Tick(object sender, EventArgs e)
{
const string someScript = "alertMe";
Label1.Text = DateTime.Now.ToString();
ClientScript.RegisterStartupScript(this.GetType(),someScript, "alert('I was called from Content page!')", true);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager runat="server"> </asp:ScriptManager>
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Label runat="server" ID="Label1"></asp:Label>
<asp:Timer ID="Timer1" runat="server" Interval="10000" OnTick ="Timer1_Tick"></asp:Timer>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>
</html>
答案 0 :(得分:2)
当您在UpdatePanel中放置触发回发的元素时,您需要使用ScriptManager而不是ClientScript。
将您的代码更改为:
ScriptManager.RegisterStartupScript(this,this.GetType(), someScript, @"alert('I was called from Content page!');", true);
答案 1 :(得分:0)
你忘记了;
ClientScript.RegisterStartupScript(this.GetType(),someScript, "alert('I was called from Content page!');", true);
大多数浏览器都有某种类型的错误控制台,您可以在发生这些问题时看到它们。