作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个连接到 SQL 数据库的 ListView 控件,我设置了一个数据分页器来限制每页上显示的项目(每页 3 个)。
我已将数据分页器设置为:visible=false 并想知道如何使数据分页器每 5 秒自动更改页面。
在此先感谢您提供的任何帮助。
最佳答案
我遇到了同样的问题,解决方案非常简单。
第一步是在页面上包含一个 DataPager 控件和一个 Timer 控件。
<asp:DataPager ID="pager" runat="server" PagedControlID="listView" PageSize="10">
<Fields>
<asp:NumericPagerField ButtonType="Link" />
</Fields>
</asp:DataPager>
<asp:Timer ID="timer" runat="server" Interval="1000" OnTick="timer_Tick">
</asp:Timer>
protected void timer_Tick(object sender, EventArgs e) {
//Verify that the session variable is not null
if (Session["startRowIndex"] == null)
Session.Add("startRowIndex", 0);
//Create a variable to store the first record to show
int startRowIndex = Convert.ToInt32(Session["startRowIndex"]);
//Show from the first record to the size of the page
this.pager.SetPageProperties(startRowIndex, this.pager.MaximumRows, true);
//Increase the first record to display in the size of the page
startRowIndex += this.pager.MaximumRows;
//If the first record exceeds the total number of records, restart the count.
if (startRowIndex > this.pager.TotalRowCount) startRowIndex = 0;
Session["startRowIndex"] = startRowIndex;
}
protected void Page_Load(object sender, EventArgs e) {
//This session variable to control the record to show for each tick
if (!IsPostBack) Session.Add("startRowIndex", 0);
}
关于asp.net - Datapager 控件每 5 秒自动换页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7011828/
在 Vaadin 7.0,显示时JavaBean Table 中的数据与 BeanContainer ,用新数据刷新表的正确方法是什么? 最佳答案 该表通过监听器监视表项的属性。如果您通过表的 Ite
首先,我使用的是带有 Axis2 1.6.2 的 eclipse,我正在 tomcat 6 上部署我创建的 Web 服务。Web 服务是在 eclipse 中通过自上而下的方法创建的。 我被要求使对我
我已将 Rails 3.1.1 应用程序升级到 Rails 3.1.3,现在,对于每个请求,它仅响应错误数量的参数(3 for 1)。不幸的是,它没有说明错误在哪里,并且应用程序跟踪为空。我认为存在一
我是一名优秀的程序员,十分优秀!