您的位置:首页 > 其它

如何使gridView中的每条记录分两行显示

2015-08-25 13:43 211 查看
<img src="https://img-blog.csdn.net/20150825134737258?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="" />
<Columns>
<asp:BoundField DataField="userName" HeaderText="客户名称" SortExpression="userName" ItemStyle-Width="100px" >
<ItemStyle Width="100px"></ItemStyle>
</asp:BoundField>
<asp:BoundField DataField="userSex" HeaderText="性别" SortExpression="userSex" ItemStyle-Width="30px" >
<ItemStyle Width="30px"></ItemStyle>
</asp:BoundField>
<asp:BoundField DataField="userPhone" HeaderText="联系电话" SortExpression="userPhone"  ItemStyle-Width="120px" >
<ItemStyle Width="120px"></ItemStyle>
</asp:BoundField>
<asp:BoundField DataField="userQQ" HeaderText="QQ及其他" SortExpression="userQQ"  ItemStyle-Width="120px">
<ItemStyle Width="120px"></ItemStyle>
</asp:BoundField>
<asp:BoundField DataField="regTime" HeaderText="注册日期" SortExpression="regTime"  ItemStyle-Width="100px">
<ItemStyle Width="100px"></ItemStyle>
</asp:BoundField>
<asp:CommandField HeaderText="删除" ShowDeleteButton="true"  ItemStyle-Width="50px">

<ItemStyle Width="50px"></ItemStyle>
</asp:CommandField>

<asp:TemplateField>
<ItemTemplate>
</td></tr>
<tr><td colspan="100%">
<div style="width:50px; float:left; text-align:right">公司名:</div>
<div style="width:150px; float:left; text-align:left">
<asp:Label runat="server" ID="lbCompany" Text='<%# Eval("usercompany") %>'></asp:Label>
</div>
<div style="width:60px; float:left; text-align:center">联系地址:</div>
<div style="width:150px; float:left; text-align:right">
<asp:Label runat="server" ID="lbAdress" Text='<%# Eval("userAdress") %>'></asp:Label>
</div>
</td>
</ItemTemplate>
</asp:TemplateField>
</Columns>
重点代码:<pre name="code" class="plain" style="font-size: 11.8181819915771px;">
                                </td></tr>                                <tr><td colspan="100%">
<pre name="code" class="plain" style="font-size: 11.8181819915771px;"><span style="white-space:pre">						</span>.....
<span style="white-space:pre">					</span></td>

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: