当前位置:  开发笔记 > 编程语言 > 正文

ASP.NET:可以使用GridView创建层次结构吗?

如何解决《ASP.NET:可以使用GridView创建层次结构吗?》经验,为你挑选了1个好方法。

我们在项目的某些页面中使用GridView控件,我们不想大幅改变,是否可以在gridview中创建层次结构?这可以通过在Gridview中使用GridView来获得父子关系来实现吗?



1> balexandre..:

是的,你可以,而且很容易......

最好的方法是有一些ObjectDataSource,以便整个过程对你来说更容易,或者当然,你可以在paraent gridview OnRowDataBound事件中绑定nasted gridview,这完全取决于你:)

例:


    
        
        
        
        
            
                
                    
                        
                        
                        
                        
                            
                                
                                    
                                        
                                        
                                        
                                    
                                
                            
                        
                    
                
            
        
    




    
        
    


    
        
    

想象你有你的公司对象

Company
  Field1
  Field2
  Field3
  Employees witch is List
    Field1
    Field2
    Field3
    Person  witch is List
      Field1
      Field2
      Field3

您需要做的就是每个DAO并返回列表或对象本身

public class CompanyDAO
{
    private List Companies
    {
        get
        {
            List companies = HttpContext.Current.Session["Companies"] as List;
            if (companies == null)
                companies = new List();
            return companies;
        }
    }
    public CompanyDAO() { }

    [DataObjectMethod(DataObjectMethodType.Select)]
    public IEnumerable FindAll()
    {
        return this.Companies;
    }

    [DataObjectMethod(DataObjectMethodType.Select)]
    public IEnumerable FindByID(String CompanyID)
    {
        return (from c in this.Companies where c.ID == CompanyID select c).ToList();
    }
}

希望它能帮助看到隧道尽头的光线;)

推荐阅读
kikokikolove
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有