我有一个ASP .NET Web应用程序,它使用ListView Control查询和显示数据库中的数据。当我在浏览器上运行Web应用程序时它工作正常,但是当我在数据库中删除或添加内容时,然后刷新运行Web应用程序的浏览器,其输出不会更新。刷新后如何更新Web应用程序?
这是ListView的代码:
<asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource">
<ItemTemplate>
<tr style="">
<td>
<asp:Label ID="HotfixIDLabel" runat="server" Text='<%# Eval("HotfixID") %>' />
</td>
<td>
<asp:Label ID="DescriptionLabel" runat="server"
Text='<%# Eval("Description") %>' />
</td>
<td>
<asp:Label ID="DateLabel" runat="server" Text='<%# Eval("Date") %>' />
</td>
</tr>
</ItemTemplate>
<AlternatingItemTemplate>
<tr style="">
<td>
<asp:Label ID="HotfixIDLabel" runat="server" Text='<%# Eval("HotfixID") %>' />
</td>
<td>
<asp:Label ID="DescriptionLabel" runat="server"
Text='<%# Eval("Description") %>' />
</td>
<td>
<asp:Label ID="DateLabel" runat="server" Text='<%# Eval("Date") %>' />
</td>
</tr>
</AlternatingItemTemplate>
<EmptyDataTemplate>
<table runat="server" style="">
<tr>
<td>
No data was returned.</td>
</tr>
</table>
</EmptyDataTemplate>
<InsertItemTemplate>
<tr style="">
<td>
<asp:Button ID="InsertButton" runat="server" CommandName="Insert"
Text="Insert" />
<asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
Text="Clear" />
</td>
<td>
<asp:TextBox ID="HotfixIDTextBox" runat="server"
Text='<%# Bind("HotfixID") %>' />
</td>
<td>
<asp:TextBox ID="DescriptionTextBox" runat="server"
Text='<%# Bind("Description") %>' />
</td>
<td>
<asp:TextBox ID="DateTextBox" runat="server" Text='<%# Bind("Date") %>' />
</td>
</tr>
</InsertItemTemplate>
<LayoutTemplate>
<table runat="server" border="0">
<tr runat="server">
<td runat="server">
<table ID="itemPlaceholderContainer" runat="server" style="">
<tr runat="server" style="">
<th id="Th1" runat="server" align="left">
<asp:LinkButton ID="LinkButton0" runat="server" CommandName="Sort" CommandArgument="HotfixID" Width="140">Update ID</asp:LinkButton></th>
<th id="Th2" runat="server">
<asp:LinkButton ID="LinkButton1" runat="server" CommandName="Sort" CommandArgument="Description" Width="600">Description</asp:LinkButton> </th>
<th id="Th3" runat="server">
<asp:LinkButton ID="LinkButton2" runat="server" CommandName="Sort" CommandArgument="Date" Width="100">Date</asp:LinkButton> </th>
</tr>
<tr ID="itemPlaceholder" runat="server">
</tr>
</table>
</td>
</tr>
<tr runat="server">
<td runat="server" style="">
</td>
</tr>
</table>
</LayoutTemplate>
<EditItemTemplate>
<tr style="">
<td>
<asp:Button ID="UpdateButton" runat="server" CommandName="Update"
Text="Update" />
<asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
Text="Cancel" />
</td>
<td>
<asp:TextBox ID="HotfixIDTextBox" runat="server"
Text='<%# Bind("HotfixID") %>' />
</td>
<td>
<asp:TextBox ID="DescriptionTextBox" runat="server"
Text='<%# Bind("Description") %>' />
</td>
<td>
<asp:TextBox ID="DateTextBox" runat="server" Text='<%# Bind("Date") %>' />
</td>
</tr>
</EditItemTemplate>
<SelectedItemTemplate>
<tr style="">
<td>
<asp:Label ID="HotfixIDLabel" runat="server" Text='<%# Eval("HotfixID") %>' />
</td>
<td>
<asp:Label ID="DescriptionLabel" runat="server"
Text='<%# Eval("Description") %>' />
</td>
<td>
<asp:Label ID="DateLabel" runat="server" Text='<%# Eval("Date") %>' />
</td>
</tr>
</SelectedItemTemplate>
</asp:ListView>
<asp:SqlDataSource ID="SPDataSource" runat="server"
ConnectionString="<%$ ConnectionStrings:addremovefinalConnectionString %>"
SelectCommand="sp_getupdatesSP_v3" SelectCommandType="StoredProcedure"
onselecting="SPDataSource_Selecting">
<SelectParameters>
<asp:ControlParameter ControlID="ComboBox1" Name="param"
PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:SqlDataSource>
答案 0 :(得分:3)
好吧,正如评论所提到的,显然页面正在被缓存。您可以通过在页面顶部添加指令来验证这一点:
<%@ OutputCache Location="None" %>
这意味着您的数据库将针对每个请求进行匹配。为了获得更好的解决方案,我建议您查看SQL cache dependencies。
答案 1 :(得分:0)
当您查询数据库时,您不是手动刷新页面,而是使用服务器端按钮导致回发并刷新数据,因此它不会用户缓存数据。
在更新数据库时,您说您正在手动刷新页面,这可能是您获取缓存数据的原因。
我的建议是在更新数据库后再次从服务器端加载页面(用新数据重新绑定控件)。