2012年10月21日

控件也是类——分步实现具有分页功能的自定义DataList控件【附源代码】

摘要: 一、控件也是类【效果】【操作步骤】1、 新建网站Web2、 添加类CustomDataList.cs(系统会提示你把类建在App_Code文件夹中),代码如下:using System;using System.Collections;using System.Text.RegularExpress... 阅读全文

posted @ 2012-10-21 02:07 WestGarden 阅读(1343) 评论(3) 推荐(3) 编辑

[置顶] 分步实现具有分页功能的自定义DataList控件【附源代码】

摘要: 一、控件也是类【效果】【操作步骤】1、 新建网站Web2、 添加类CustomDataList.cs(系统会提示你把类建在App_Code文件夹中),代码如下:using System; using System.Collections; using System.Text.RegularExpressions; using System.Web.UI; using System.Web.UI.WebControls; namespace WestGarden.Web { public class CustomDataList : DataList { } } 3、... 阅读全文

posted @ 2012-10-21 01:12 WestGarden 阅读(226) 评论(0) 推荐(0) 编辑

导航