zoukankan      html  css  js  c++  java
  • 强大的asp.net 绑定组件

    asp.net 的数据集合绑定方法 DataBinder.Eval 不好用,不支持子实体绑定,不支持枚举转义绑定等等,总之不是很好用,只好自己丰衣足食,

    组件下载:https://files.cnblogs.com/zhouyongguo/testLogon.rar

    页面html代码式:
    <table border=1>
                    
    <tr>
                        
    <td>名称</td>
                        
    <td>审核</td>
                        
    <td>日期</td>
                        
    <td>其他</td>
                    
    </tr>
                    
    <asp:repeater id="Repeater1" runat="server">
                        
    <ItemTemplate>
                            
    <tr>
                                
    <td><%#Great.MyBinder.Eval(Container.DataItem,"Title")%></td>
                                
    <td><%#Great.MyBinder.EvealEnum(Container.DataItem,"IsAuditing",new string[]{"审核","未审核"})%></td>
                                
    <td><%#Great.MyBinder.EvalDate(Container.DataItem,"CreateDate",true)%></td>
                                
    <td><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%></td>
                            
    </tr>
                        
    </ItemTemplate>
                    
    </asp:repeater>
                
    </table>

    <%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%><%#Great.MyBinder.Eval(Container.DataItem,"file.Name")%>file.Name 可以一直点下去 如:file.Name...,可以绑定私有字段,枚举 布尔可以转义

    代码:
     1private void Page_Load(object sender, System.EventArgs e)
     2        {
     3            this.Repeater1.DataSource=GetList();
     4            this.Repeater1.DataBind();
     5        }

     6
     7        private ArrayList GetList()
     8        {
     9            System.Collections.ArrayList list=new ArrayList();
    10            Doc doc=new Doc(System.DateTime.Now);
    11            doc.Title="计划";
    12            doc.file=new File("福建");
    13            list.Add(doc);
    14
    15            Doc doc1=new Doc(new DateTime(2004,4,6));
    16            doc1.Title="报告";
    17            doc1.IsAuditing=true;
    18            doc1.file=new File("北京");
    19            list.Add(doc1);
    20            return list;
    21            
    22        }

    实体:



    public class Doc
        
    {
            
    string _title="";
            
    public string Title
            
    {
                
    get{return this._title;}
                
    set{this._title=value;}
            }


            
    public File file;

            
    private System.DateTime CreateDate=System.DateTime.Now;

            
    public bool IsAuditing=false;
            
    public Doc()
            
    {            
            }


            
    public Doc(System.DateTime createDate)
            
    {
                CreateDate
    =createDate;
            }

        }


        
    public class File
        
    {
            
    private string Name="";
            
    public File(string name)
            
    {
                
    this.Name=name;

            }

        }
  • 相关阅读:
    通过坐标比较来取代hitTest()
    用于判断数组是否完全包含另外的一个数组的所有元素
    flash中trace可显示正确的元件名称,可是程序无法控制该mc
    拿人多少薪水,就要承担多少的责任和压力
    影片剪辑的位置几种方法
    lite:最多支持12个键 ...
    为离我们远去的同胞默哀
    卡巴斯基6累积离线升级包的制作方法
    简单面试
    C#常用函数
  • 原文地址:https://www.cnblogs.com/zhouyongguo/p/381549.html
Copyright © 2011-2022 走看看