爬了一些文发现...
已在master page使用scriptmanager的情况下,
在content page中可不必再加入scriptmanager,
但因为我在content page中想放一个update panel的区域,
打算用timer来做内容的更新,发现怎么试都不会有变化??
不知是哪里有错!?
首先在content page内插入一段
<asp:updatepanel ....>
<contentTemplate>
<asp:Label ......></asp:Label>
</contentTemplate>
<Triggers>
<asp:AsyncPostBakTrigger: ControlID="Timer1" EventName="tick" />
</Triggers>
</asp:updatepanel>
c#程式码
protected void Timer1_Tick(object sender, EventArgs e)
{
this.Label1.Text = DateTime.Now.LongTimeString();
}
想要在content page中看到时间的变化,但始终不变? 可否请各位大大指点迷津..谢谢!!