我有一个网格视图,我需要将一个单元格分成 2 个相等的行...
在这里我可以分割,但我不能分成相等的部分....
我怎样才能将一个单元格精确地分成 2 行....
这是我的代码..
更新一个
<Wizard:WizardGridView ID="gvresmgt" runat="server" AllowPaging="False" AllowSorting="True"
AutoGenerateColumns="false" WizardCustomPager="False" EnableModelValidation="True" CssClass="style1" ShowHeader="False" >
<Columns>
<asp:TemplateField >
<ItemStyle Width="100px" HorizontalAlign="left" />
<ItemTemplate>
<asp:Label runat="server" ID="lblTitle" Text='<%# Eval("BGP_ID")%>' ></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField >
<ItemStyle Width="100px" HorizontalAlign="Center" />
<ItemTemplate>
<asp:Label runat="server" ID="lblDescription" Text='<%# Eval("BGP_DESC")%>' > </asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemStyle Width="100px" HorizontalAlign="Center" />
<ItemTemplate>
**<div id="1" style="border-bottom: solid 1px #C0C0C0">
<asp:Label runat="server" ID="lblPlanStart" Font-Bold="true" Text="Projects"></asp:Label>
<br/>
<br/>
</div>
<asp:Label runat="server" ID="Label3" Font-Bold="true" Text="SubTotal"></asp:Label> **
</ItemTemplate>
</asp:TemplateField>
</Columns>
</Wizard:WizardGridView>