首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

ajax未能及时加载,求救!该怎么处理

2012-03-18 
ajax未能及时加载,求救!!!C# codehtml xmlnshttp://www.w3.org/1999/xhtmlhead runatservertit

ajax未能及时加载,求救!!!

C# code
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title>无标题页</title></head><body>    <form id="form1" runat="server">    <asp:ScriptManager ID="ScriptManager1" runat="server">    </asp:ScriptManager>    <asp:UpdatePanel ID="UpdatePanel1" runat="server">    <ContentTemplate>       <div>         //repeater控件或者gridview控件的内容        <br />           </div>    </ContentTemplate>    </asp:UpdatePanel>     </form></body></html>我原来写好像修改数据库中的数据时,页面会及时显示的,可今天怎么就不及时显示了呢是不是要设置什么东东啊!我忘了,请大家帮忙一下!


[解决办法]
你要显示什么啊
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div>
 
//repeater控件或者gridview控件的内容
<br />

</div>
</ContentTemplate>
</asp:UpdatePanel>
 
</form>
你只有容器没有显示数据的控件啊

//repeater控件或者gridview控件的内容
你这里写明了 你没有加上去啊!!!

热点排行