1

因为我想格式化我的网格视图,因为它只显示这样的数据,

john
Adam
Morkel
Kalis
.
.
.

.

我想以这种方式展示他们,

john    Kalis   .
                . 
Adam    Chris   .
         .      .
morkel   .      .

附加数据源后我的代码,

GridView1.DataSource = dt;
GridView1.DataBind();

希望您的建议提前谢谢

4

2 回答 2

1

最好使用DataList控件。

对于您的多行/多列需求,请查看http://www.asp.net/web-forms/tutorials/data-access上的“第 3 步:在多列、多行表中显示数据/displaying-data-with-the-datalist-and-repeater/showing-multiple-records-per-row-with-the-datalist-control-vb

于 2012-12-04T09:32:10.870 回答
0

我认为你必须使用DataList而不是gridview

检查这些例子

http://www.asp.net/web-forms/tutorials/data-access/displaying-data-with-the-datalist-and-repeater/displaying-data-with-the-datalist-and-repeater-controls- VB

http://www.packtpub.com/article/working-with-asp-dot-net-datalist-control

编辑:

.aspx

  <ItemTemplate>
    <ul>
       <li> <%# Container.DataItem %></li>
    </ul>
  </ItemTemplate>

</asp:DataList>

。CS

 List<string> ss = new List<string>();
    ss.Add("john");
    ss.Add("Adam");
    ss.Add("Morkel");
    ss.Add("Kalis");
    ss.Add("Chris");
    DataList1.DataSource=ss;
    DataList1.DataBind();
于 2012-12-04T09:27:45.147 回答