首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴jeanine123的代码贴全部
前台

 <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