首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
jeanine123的代码贴
→
全部
GridView控件实现支持分页的自动编号代码
前台
<asp:TemplateField HeaderText="序号">
<ItemTemplate>
<%# (this.Pager.CurrentPageIndex - 1) * this.Pager.PageSize + Container.DataItemIndex + 1%>
</ItemTemplate>
</asp:TemplateField>
后台
在RowDataBound事件中加
if (e.Row.RowIndex > -1)
......................
阅读全部
| 2012年9月24日 21:08
接口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 计算器_接口_
{
class Program
{
static void Main(string[] args)
{
ICompute minus = (ICompute)new Minus();
......................
阅读全部
| 2012年9月24日 14:54
1
jeanine123
全部(2)
Aspx-C#(2)