摘要: protected void PageButtonClick(object sender, EventArgs e) { LinkButton clickedButton = ((LinkButton)sender); if (clickedButton.CommandName == "first") { gvshow.PageIndex = 0; } else if (clickedButton.CommandName == "next") { if (gvshow.PageIndex < gvshow.PageCount - 1) { gvsh 阅读全文
posted @ 2012-12-10 16:29 洗耳恭听兼烂笔头 阅读(152) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.IO;using System.Text;namespace WFWMS.Lib{ public class GridV 阅读全文
posted @ 2012-12-10 16:21 洗耳恭听兼烂笔头 阅读(215) 评论(0) 推荐(0) 编辑