1

我想根据以下格式更改 gridview 显示其项目的方式。


  <img1>          <img2>           <img3>          <img4>
<caption1>      <caption1>        <caption1>     <caption1>

  <img5>          <img6>           <img7>          <img8>
<caption5>      <caption6>        <caption7>     <caption8>

等等...


4

2 回答 2

2

您可以将自定义格式选项与DataList 或 Repeater 控件一起使用,而不是 GridView。检查这些示例以获得帮助:

http://csharpdotnetfreak.blogspot.com/2009/05/aspnet-creating-shopping-cart-example.html

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

于 2013-01-16T04:32:37.510 回答
0

AutoGenerateColumngridview 的属性设置为 false ,然后使用 <asp:TemplateField><ItemTemplate>under <Columns>section 以您喜欢的方式添加控件。

于 2013-01-16T04:20:04.543 回答