文谷首页 | 业界传真 | 网络技术 | 服务器 | 数据库 | 存储技术 | 系统安全 | 无线技术 | Cisco | .Net | Windows | Linux | Unix | Java
电子商务 | 网站工程 | 网页设计 | 平面设计 | 多媒体 | 编程语言 | Oracle | MSSQL | Photoshop | ASP | PHP | 实用技巧 | 进程查询 | 文谷论坛
 websphere   .net framework
您现在的位置: IT文谷 >> 开发平台 >> .net framework >> ADO.NET >> 文章正文
DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)
DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)
DataGrid使用心得(附大量代码)

DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)

   1.为DataGrid控件设计样式
   
   在<asp:datagridid="DataGrid1"runat="server">之后添加如下代码
   
   <FooterStyleForeColor="Black"BackColor="#CCCCCC"></FooterStyle>
   <SelectedItemStyleFont-Bold="True"ForeColor="White"BackColor="#008A8C"></SelectedItemStyle>
   <AlternatingItemStyleBackColor="Gainsboro"></AlternatingItemStyle>
   <ItemStyleForeColor="Black"BackColor="#EEEEEE"></ItemStyle>
   <HeaderStyleFont-Bold="True"ForeColor="White"BackColor="#000084"></HeaderStyle>
   
   说明:
   (1)在每个标签内主要是 ForeColor  BackColor Font-Bold这几个属性值
   
   2.为DataGrid控件添加绑定列
   
   <asp:BoundColumnDataField=""ReadOnly="True"HeaderText=""></asp:BoundColumn>
   说明:
   (1)在标签内的基本属性是DataField/HeaderText
   (2)DataFormatString用于获取或设置指定列中各项的显示格式的字符串。
    形式为{A:Bxx}。例如,格式化字符串{0:F2}将显示带两位小数的定点数。
    其中A值只能设置为0,因为每个单元格中只有一个值。
    冒号后的字符(常规示例中为B)指定值的显示格式
    C 以货币格式显示数值。
       D 以十进制格式显示数值。
       E 以科学记数法(指数)格式显示数值。
       F 以固定格式显示数值。
       G 以常规格式显示数值。
       N 以数字格式显示数值。
       X 以十六进制格式显示数值。
   (3)Visible获取或设置一个值,该值指示此列在DataGrid控件中是否可见。
   (4)ReadOnly设置些列是否只读,若是只读的话,则不能修改.
   (5)SortExpression获取或设置选择进行排序的列时传递到OnSortCommand方法的字段或表达式的名称。
  

  3.为DataGrid控件添加模板列

   <asp:TemplateColumnHeaderText="类别">
    <ItemTemplate>
     <asp:LabelText='<%#DataBinder.Eval(Container.DataItem,"actorclassname")%>'runat="server"ID="Label1"/>
    </ItemTemplate>
    <EditItemTemplate>
     <selectname="sltclassname">
      <%=ActorClass.GetParentClass(0)%>
     </select>
    </EditItemTemplate>
   </asp:TemplateColumn>

   说明:

   (1)基本框架是

    <asp:TemplateColumnHeaderText="类别">
    <ItemTemplate></ItemTemplate>
    </asp:TemplateColumn>

   (2)全面的模板列

    <asp:TemplateColumn>

              <HeaderTemplate>
                 <b>Tax</b>
              </HeaderTemplate>

              <ItemTemplate>
                 <asp:Label
                      Text='<%#DataBinder.Eval(Container.DataItem,"Tax")%>'
                      runat="server"/>
              </ItemTemplate>

              <EditItemTemplate>

                 <asp:CheckBox
                      Text="Taxable"
                      runat="server"/>

              </EditItemTemplate>

              <FooterTemplate>
                 <asp:HyperLinkid="HyperLink1"
                      Text="Microsoft"
                      NavigateUrl="http://www.microsoft.com"
                      runat="server"/>
              </FooterTemplate>

           </asp:TemplateColumn>

 (3)为布尔型列应用模板列

  <asp:TemplateColumn>
        <ItemTemplate>
            <asp:Label
                Text='<%#DataBinder.Eval(Container.DataItem,"Tax")%>'
                    runat="server"/>
           </ItemTemplate>
           <EditItemTemplate>
            <asp:CheckBox
                Text="Taxable"
                    runat="server"/>

           </EditItemTemplate>
       </asp:TemplateColumn>
       在正常状态,用Label控件显示
       在编辑状态,用CheckBox控件显示
   
 (4) 为枚举类型列应用模板列,如业务地区(全网/广东/云南等等)

  <asp:TemplateColumnHeaderText="处理方式">
   <ItemTemplate>
    <asp:LabelID="lbStatus">
     <%#DataBinder.Eval(Container,"DataItem.DealWith")%>
    </asp:Label>
   </ItemTemplate>
   <EditItemTemplate>
    <asp:DropDownListid="dpStatus2"runat="server"DataTextField="status">
     <asp:ListItemValue="Log">Log(日志)</asp:ListItem>
     <asp:ListItemValue="SendSms">SendSms(短信)</asp:ListItem>
    </asp:DropDownList>
   </EditItemTemplate>
  </asp:TemplateColumn>
  在正常状态,用Label控件显示
  在编辑状态,用DropDownList控件显示
 
 (5)为长字符串应用模板列,如一篇文章的内容
   还未做过
  
 4.为DataGrid控件添加按钮列
 
 <asp:ButtonColumn
       HeaderText="Removefromcart"
       ButtonType="PushButton"
       Text="Remove"
       CommandName="RemoveFromCart"/>
   (1)要使用按钮列,必须在DataGrid控件中添加OnItemCommand属性,并为该事件添加处理方法.
   (2)模板列可以实现按钮列能实现的任何功能.
   
   5.为DataGrid控件添加编辑列

   <asp:EditCommandColumnButtonType="LinkButton"UpdateText="更新"HeaderText="编辑"CancelText="取消"EditText="编辑"></asp:EditCommandColumn>
   (1)ButtonType有两个值:LinkButton超级链接样式按钮的列|PushButton普通按钮的列。

 6.为DataGrid控件添加超链接列

 <asp:HyperLinkColumnText="添加子类"DataNavigateUrlField="ActorclassID"DataNavigateUrlFormatString="addActorClass.aspx?classID={0}"></asp:HyperLinkColumn>

 (1)为每一行设置相同的文字及跳转的URL地址

  设置Text和NavigateUrl属性,则列中的所有超级链接将共享同一标题和URL

 (2)为每一行设置不同的文字及不同跳转的URL地址

  A. 用DataTextField设置数据源字段,若还想在原数据的基础上加工一下(如字段值为300,想显示为300元)
   则再设置DataTextFormatString字段
  B. 用DataNavigateUrlField及DataNavigateUrlFormatString来设置URL地址
   用DataTextField="money"DataTextFormatString="{0}元"
  C. 举例
   DataNavigateUrlField="ActorclassID"DataNavigateUrlFormatString="addActorClass.aspx?classID={0}"
   
 7.为DataGrid控件添加"编辑"代码

  在DataGrid标签中加入
  OnUpdateCommand="DataGrid1_Update"OnCancelCommand="DataGrid1_Cancel"OnEditCommand="DataGrid1_Edit"代码
  在codeBehind页面加入如下代码
  ///响应编辑按钮
  publicvoidDataGrid1_Edit(Objectsender,DataGridCommandEventArgse)
  {
   DataGrid1.EditItemIndex=e.Item.ItemIndex;
   if(Request.QueryString.Get("classID")!=null)
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswhereparentID="+Request.QueryString.Get("classID")+"orderbydepth,orderIDdesc"));
   else
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswheredepth=1orderbydepth,orderIDdesc"));
  }
  
  ///响应取消按钮
  publicvoidDataGrid1_Cancel(Objectsender,DataGridCommandEventArgse)
  {
   DataGrid1.EditItemIndex=-1;
   if(Request.QueryString.Get("classID")!=null)
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswhereparentID="+Request.QueryString.Get("classID")+"orderbydepth,orderIDdesc"));
   else
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswheredepth=1orderbydepth,orderIDdesc"));

  }
  
  ///响应更新按钮  
  publicvoidDataGrid1_Update(Objectsender,DataGridCommandEventArgse)
  {
   TextBoxClassNameText=(TextBox)e.Item.Cells[1].Controls[0];
   stringclassName=ClassNameText.Text;
   intclassID=Int32.Parse((e.Item.Cells[0].Text).ToString());
   TextBoxorderID2=(TextBox)e.Item.Cells[5].Controls[0];
   intorderID=Int32.Parse(orderID2.Text);
   ActorClass.ModifyActorClass(className,classID,orderID);

   DataGrid1.EditItemIndex=-1;
   if(Request.QueryString.Get("classID")!=null)
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswhereparentID="+Request.QueryString.Get("classID")+"orderbydepth,orderIDdesc"));
   else
    Common.BindData(DataGrid1,Common.GetSource("select*fromActorClasswheredepth=1orderbydepth,orderIDdesc"));
  }

  说明

  (1)DataGrid事件处理程序的格式
   MethodName(Objectsender,DataGridCommandEventArgse)
  (2)更新按钮的说明
   A.获取编辑状态中的文本框
    TextBoxClassNameText=(TextBox)e.Item.Cells[1].Controls[0];
    stringclassName=ClassNameText.Text;
   B.获取编辑状态中的下拉列表框
    方法一
    intclassID;
    classID=Int32.Parse(Request.Form.Get("sltclassname"));
    方法二
    DropDownListbbb=(DropDownList)e.Item.Cells[10].FindControl("dpStatus2");
    stringddpValue=bbb.SelectedValue
   C.获取编辑状态中的复选框
    boolboolEnabled=((CheckBox)e.Item.FindControl("chk_enabled")).Checked;
    Stringstr2;
    if(boolEnabled)
    {
     str2="1";
    }
    else 
    {
     str2="0";
    }
    赋值给str2,原因是插入到数据库的布尔型值只能是1或者0
   D.获取编辑状态中的文本值,即该列是只读的.
    stringstoryID=(e.Item.Cells[0].Text).ToString();

 

[1] [2] 下一页  

[1] [2] 下一页  

DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)


  • 上一篇文章:

  • 下一篇文章: 没有了
  • 进入论坛讨论

    相关文章
    基于.NET的多线程编程入门
    Microsoft .NET 框架资源基础
    VS2005常用插件搜罗
    .net中用GDI+提高gif图片保存画质
    VS.NET:通过Web服务瞄准电子商务
    对象设计中创建VS使用
    安装/初始化/个性化DotNetNuke
    介绍dotnet原动力(DNN)
    GDI+编程10个基本技巧
    DTE .NET工程的自动化编译
    .Net中如何操作IIS的原理分析
    VS.NETRC5无法创建Add-IN工程
    热门文章最新推荐

    版权与免责声明:
    ① 本网转载其他媒体稿件是为传播更多的信息,此类稿件不代表本网观点,版权归原作者所有,本网不承担此类稿件侵权行为的连带责任。
    ② 在本网BBS上发表言论者,文责自负。
    ③ 如您因版权等问题需要与本网联络,请在30日内联系 。
    DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)
    DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)2006-7-15DataGrid使用心得(附大量代码)

    .net framework专题
    人气排行
  • 此栏目下没有文章
  • 最近更新
    普通文章技术介绍 新数据网格简介
    普通文章.NET 开发人员该下载的十个必备
    普通文章深入剖析Asp.net资源文件
    普通文章通过事例学习.net的WebForms技
    普通文章ASP.NET Tips1---合并多个字段
    普通文章微软明年1月份出台.NET专业开发
    普通文章微软下月底前完成Vista大部分功
    普通文章揭开微软 .NET 认证考试的面纱
    普通文章Visual Studio:Microsoft开发工
    普通文章Visual Studio:Microsoft开发工
    全站热点       
    最新推荐
    关于文谷 | 联系文谷 | 免责声明 | 文谷社区
    Tel: 0577-65690019    E-mail: ichenjian@gmail.com    MSN:ichenjian@hotmail.com    QQ:2911194
    Copyright © 2004-2006 wengu.org 文谷 All Rights Reserved
    浙ICP备05000327号