gridview刷新固定滚动条

1、在页面没有使用AJAX时,在页面的Page命令中增加MaintainScrollPositionOnPostback="true"属性

<%@ Page Language="C#" AutoEventWireup="true" MaintainScrollPositionOnPostback="true" CodeBehind="Default.aspx.cs"

2、当页面没有使用AJAX时,第一种方法会无效,此时可以在DIV滚动时记住滚动条位置,并在提交后恢复滚动条位置

前台代码:

<%@ Page Language="C#" AutoEventWireup="true" MaintainScrollPositionOnPostback="true" CodeBehind="Default.aspx.cs" Inherits="Gridview_Scroll._Default" %>

<!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 id="Head1" runat="server">
    <title></title>
    <script type="text/javascript" language="javascript">
        function RecordPostion(obj) {
            var div1 = obj;
            var sx = document.getElementById(‘dvscrollX‘);
            var sy = document.getElementById(‘dvscrollY‘);

            sy.value = div1.scrollTop;
            sx.value = div1.scrollLeft;
        }

        function GetResultFromServer() {
            var sx = document.getElementById(‘dvscrollX‘);
            var sy = document.getElementById(‘dvscrollY‘);

            document.getElementById(‘dvGridView‘).scrollTop = sy.value;
            document.getElementById(‘dvGridView‘).scrollLeft = sx.value;
        }
    </script>
</head>
<body style="height:1500px">
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" >
    </asp:ScriptManager>

    <div>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <div id="dvGridView" style="height:400px; overflow:scroll" onscroll="javascript:RecordPostion(this);">
                <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" ShowHeader="false" >
                    <Columns>
                        <asp:TemplateField>
                            <ItemTemplate>
                                <asp:Label ID="Label2" runat="server" Text=‘<%#Eval("Id") %>‘></asp:Label>
                            </ItemTemplate>
                        </asp:TemplateField>
                        <asp:TemplateField>
                            <ItemTemplate>
                                <asp:Label ID="Label1" runat="server" Text=‘<%#Eval("Name") %>‘></asp:Label>
                            </ItemTemplate>
                        </asp:TemplateField>
                    </Columns>
                </asp:GridView>
                <asp:Timer ID="Timer1" runat="server" ontick="Timer1_Tick" Interval="2000">
                </asp:Timer>
                </div>
                <asp:HiddenField ID="dvscrollX" runat="server" />
                <asp:HiddenField ID="dvscrollY" runat="server" />
            </ContentTemplate>
        </asp:UpdatePanel>
    </div>
    </form>
</body>
</html>

后台代码:

using System;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

namespace Gridview_Scroll
{
    public partial class _Default : System.Web.UI.Page
    {
        protected static DataTable dt1;

        protected static DataTable dt2;

        protected static int iFlag = 0;

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                dt1 = new DataTable();
                dt2 = new DataTable();

                dt1.Columns.Add("Id", typeof(string));
                dt1.Columns.Add("Name", typeof(string));

                dt2.Columns.Add("Id", typeof(string));
                dt2.Columns.Add("Name", typeof(string));

                for (int i = 0; i < 100; i++)
                {
                    DataRow dr1 = dt1.NewRow();
                    dr1["Id"] = i.ToString();
                    dr1["Name"] = "Jack_" + i.ToString();
                    dt1.Rows.Add(dr1);
                }

                for (int j = 0; j < 200; j++)
                {
                    DataRow dr2 = dt2.NewRow();
                    dr2["Id"] = j.ToString();
                    dr2["Name"] = "Tom_" + j.ToString();
                    dt2.Rows.Add(dr2);
                }
            }
        }

        private void BindGridView()
        {

            if (iFlag % 2 == 1)
            {
                this.GridView1.DataSource = dt1;
            }
            else
            {
                this.GridView1.DataSource = dt2;
            }

            this.GridView1.DataBind();

            string sjs = "GetResultFromServer();";

            ScriptManager.RegisterClientScriptBlock(this.GridView1, this.GetType(), "", sjs, true);

        }

        protected void Timer1_Tick(object sender, EventArgs e)
        {
            iFlag++;

            BindGridView();
        }
    }
}

这两种方法,摘自CSDN两位网友Mr_ALeiAngleProgrammer在CSDN论坛中的回复内容

时间: 2024-10-22 02:50:46

gridview刷新固定滚动条的相关文章

GridView显示水平滚动条

this.gridView.OptionsView.ColumnAutoWidth = false;this.gridView.ScrollStyle = ScrollStyleFlags.LiveHorzScroll | ScrollStyleFlags.LiveVertScroll;this.gridView.HorzScrollVisibility = ScrollVisibility.Always;

Android学习之——如何将GridView内嵌在ScrollView中

最近在做一个项目,有一个需求是在ScrollView中内嵌一个GridView. 刚开始,我是以为能直接内嵌在里面: 1 <ScrollView 2 android:layout_width="match_parent" 3 android:layout_height="0dp" 4 android:layout_weight="5.5"> 5 <GridView 6 android:id="@+id/gridView

重写移动端滚动条[iScroll.js核心代码]

最近写组件库的时后,发现这个滚动条是真的丑啊,决定重新撸一个滚动条: 首先咱们回顾一下移动端浏览器滚动条特性: 滚动条在开始滚动时渐显,滚动结束后渐隐 滚动条不占内容区宽度,悬浮固定 滚动条高度(深灰)和滚动区可视高度(浅灰)比等于滚动区可视高度和滚动目标的高度 当滚动目标的高度小于滚动区可视高度的时候,滚动条不显示,并且无法滚动 只有在滚动滚动目标时,才能触发滚动 当滚动条顶部触顶和底部触底的时候,不能继续滚动 只有在滚动大于一个固定值时,才被视为滚动开始 根据滚动的差值,计算是向上滚动还是向

个人学习积累

QQ 596957738 - 有问题可以联系我 可以使用 Ctrl + F 搜索 --更新于2018年03月29日 . │ 7z1604-x64加压工具-压缩工具.zip │ t.txt │ 禁止全文件夹分享.txt │ ├───0 Android │ │ 0 注意细节.docx │ │ About MODE_WORLD_READABLE .txt │ │ AutoScalingLayout-master 自动适配的布局.zip │ │ BadgeView 库.例子.rar │ │ event.

IScroll介绍--案例

一.下面简单介绍一下iScroll: iScroll是一个高性能,资源占用少,无依赖,多平台的javascript滚动插件. 它可以在桌面,移动设备和智能电视平台上工作.它一直在大力优化性能和文件大小以便在新旧设备上提供最顺畅的体验. iScroll不仅仅是 滚动.它可以处理任何需要与用户进行移动交互的元素.在你的项目中包含仅仅4kb大小的iScroll,你的项目便拥有了滚动,缩放,平移,无限滚动,视差滚动,旋转功能.给它一个扫帚它甚至能帮你打扫办公室. 即使平台本身提供的滚动已经很不错,iSc

list-iscroll5.2

简介 iScroll是一个高性能,资源占用少,无依赖,多平台的JavaScript滚动插件. 它可以在桌面,移动设备和智能电视平台上工作.它一直在大力优化性能和文件大小以便在新旧设备上提供最顺畅的体验. iScroll不仅仅是 滚动.它可以处理任何需要与用户进行移动交互的元素.在你的项目中包含仅仅4kb大小的iScroll,你的项目便拥有了滚动,缩放,平移,无限滚动,视差滚动,旋转功能.给它一个扫帚它甚至能帮你打扫办公室. 即使平台本身提供的滚动已经很不错,iScroll可以在此基础上提供更多不

有关lscroll的有关的问题~

这个例子是网上比较常见的,下过来的时候,上拉下拉刷新都是添加的静态元素,我添加ajax后,就出现了样式问题,刷新后滚动条长度不变,但是内容长度变了,达不到底部.得改变下浏览器高度才能使滚动条正常. 把ajax设置成同步就行了.$.ajax({async : false,) iScroll 框架介绍 iScroll 4 这个版本完全重写了iScroll这个框架的原始代码.这个项目的产生完全是因为移动版webkit浏览器(诸如iPhone,iPad,Android 这些系统上广泛使用)提供了一种本地

iscroll中文文档

转自:http://blog.csdn.net/sweetsuzyhyf/article/details/44195549 IScroll.js 最新版本 v5.1.2 修复了输入框无法输入和横向滚动时无法上下滚动页面的问题 var myScroll = new IScroll('#wrapper', { disableMouse: true, disablePointer: true }); 官网:http://iscrolljs.com github: https://github.com/

页面滚动事件的使用

在现在更加追加页面加载速度和用户体验的情况下,页面的滚动事件使用的越来越多.通常我们使用滚动事件主要做的事情主要有: ajax异步加载,加快页面首次加载的速度 懒加载(或延迟加载):先把HTML元素放到textarea标签中,或把img的链接先放到一个字段里,页面滚动到某个位置时才进行开始加载 顶部导航或侧边导航的焦点跟踪 侧边数字导航的跟踪(例如百度经验) “回到顶部”功能 这两天做了一个demo,大家可以参考一下:页面滚动效果 上图中指出了用滚动事件实现的功能,不过demo中没有实现异步加载