类似这个的!  http://www.caae.com.cn/list.aspx?id=科技动态

解决方案 »

  1.   

    这个问题 谁帮我解决了 我送他一个ASP自助建站的平台  200 摸版   可以加我QQ58022753
      

  2.   

    easy啊
    做个用户控件
    形式如:新闻类别
    1,新闻的标题
    2,新闻的标题
    3,新闻的标题然后根据?id=xxx动态的加载用户控件
      

  3.   

    str_Sql="select sort_name,id from sort_name order by id asc; select  id,sort_id,title from ticket_knowledge a where id in(select top 5 id from ticket_knowledge b where a.sort_id=b.sort_id)  order by id desc"; 
    conn.Fill(str_Sql);
    conn.ds.Tables[0].TableName = "sort_name";
                            conn.ds.Tables[1].TableName = "ticket_knowledge";
    DataColumn Parent = conn.ds.Tables["sort_name"].Columns["id"];
                            DataColumn Child  = conn.ds.Tables["ticket_knowledge"].Columns["sort_id"];
    DataRelation OrderRelation   = new DataRelation("OrderRelation", Parent, Child, false);                        conn.ds.Relations.Add(OrderRelation);
    MyDataList.DataSource = conn.ds.Tables["sort_name"].DefaultView;
    用relations     DataGrid嵌套
    见 http://www.sha168.com/server.aspx
      

  4.   

    那个朋友能把相关的代码 和相关的CS文件贴出来 一下!
    用datalist或datagrid嵌套就行了    我做过 我用2个reater嵌套的!可不能控制标题显示的数目