我有一个ASP.Net更新面板,其中包含我试图从代码隐藏文件中更新的控件,方法是将控件的值设置为我想要的值,然后调用Update()
UpdatePanel的方法。
我知道要调用Update()方法,我需要将UpdateMode属性设置为条件,所以这就是我所做的,但无论如何我都会收到以下错误:
当UpdateMode设置为Conditional时,只能在ID为“UpdatePanel1”的UpdatePanel上调用Update方法。
我的属性框如下所示:
我的代码如下所示:
using System;
using System.Timers;
namespace WebApplication2
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
var myTimer = new System.Timers.Timer();
myTimer.Interval = 1000;
myTimer.Elapsed += new ElapsedEventHandler(myTimer_Elapsed);
myTimer.Start();
}
void myTimer_Elapsed(object sender, ElapsedEventArgs e)
{
var newGUID = Guid.NewGuid().ToString();
Label1.Text = newGUID;
UpdatePanel1.Update();
}
}
}
我的表单如下:
我的标记如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
#form1
{
text-align: center;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Label ID="Label1" runat="server" style="text-align: center" Text="Label"></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>
为什么这不起作用?
由于
答案 0 :(得分:1)
我建议您查看following tutorial。使用的Timer控件是System.Web.UI.Timer
,而不是代码中的System.Timers.Timer
。此外,计时器必须放在更新面板内,以便在触发OnTick
事件时触发AJAX调用:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Page Language="C#" %>
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script runat="server" type="text/c#">
protected void Timer1_Tick(object sender, EventArgs e)
{
Label1.Text = "Panel refreshed at: " + DateTime.Now.ToLongTimeString();
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager runat="server" id="ScriptManager1" />
<asp:UpdatePanel runat="server" id="UpdatePanel1">
<ContentTemplate>
<asp:Timer runat="server" id="Timer1" Interval="1000" OnTick="Timer1_Tick" />
<asp:Label runat="server" Text="Page not refreshed yet." id="Label1" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:Label runat="server" Text="Label" id="Label2"></asp:Label>
</form>
</body>
</html>
答案 1 :(得分:0)
以Designer
模式查看该页面并重命名,保存,您应该好好去。这很可能是VS的缓存问题,切换设计器模式会强制控件在“设计”模式下渲染,因此它应该更新幕后代码以清除错误。