GridView自定义分页
2008-11-24 22:31 Iron 阅读(101) 评论(0) 编辑 收藏 举报<%?@ Page Language="C#" AutoEventWireup="true" CodeFile="fenpage.aspx.cs" Inherits="gridview_fenpage" %>
?
?<!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>
?
?? <script language="javascript" type="text/javascript">?
? // 判断多选是否与选中项(没有选中的返回false)
? function slcNo_click()
?? ?{
? if (document.form1.checkboxname.length)
?? ?{
? for (var i=0;i<document.form1.checkboxname.length;i++)
?? ?{
? if(document.form1.checkboxname[i].checked)
?? ?{
? return true;
? }
? }
? }
? else
?? ?{
? if(document.form1.checkboxname.checked)
?? ?{
? return true;
? }
? }
? alert("请选择后再操作!");
? return false;
? }
?
? // 鼠标经过改变行的颜色
? if (!objbeforeItem)
?? ?{
? var objbeforeItem=null;
? var objbeforeItembackgroundColor=null;
? }
? function ItemOver(obj)
?? ?{
? if(objbeforeItem)
?? ?{
? objbeforeItem.style.backgroundColor = objbeforeItembackgroundColor;
? }
? objbeforeItembackgroundColor = obj.style.backgroundColor;
? objbeforeItem = obj;
? obj.style.backgroundColor = "#B9D1F3";
? }
? //
?
? // 多选的全选与取消
? function checkJs(boolvalue)
?? ?{
? if(document.all.checkboxname.length>1)
?? ?{
? for(var i=0;i<document.all.checkboxname.length;i++)
?? ?{
? document.all.checkboxname[i].checked = boolvalue;
? }
? }
? else
? document.all.checkboxname.checked = boolvalue;
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
fenpage.aspx.cs的代码:
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
数据库中表的生成代码:
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?