当我把任何有效器添加到网格内的任何模板类型中时,看来有效器改变了电池/栅栏的高度、宽度和一致性。 我可以排除所有格式[取消风格表格和任何其他属性],如果在模板中添加格式改动——涉及有效者的话。 我对网来说是很新的——我如何防止有效人员产生任何形式影响? 我认为,它们将产生零的影响。
感谢!
以下为一栏的一个例子:
<asp:TemplateField HeaderText="Paid" SortExpression="PaidPrice" ControlStyle-Width="50px" ItemStyle-HorizontalAlign="center">
<EditItemTemplate>
<asp:TextBox ID="PaidPrice" runat="server" Text= <%# Eval("PaidPrice","{0:f}") %> ></asp:TextBox>
<asp:CompareValidator ID="CompareValidator2" Runat="server" ControlToValidate="PaidPrice" Operator="DataTypeCheck" Type="Currency"
ErrorMessage="You must provide a valid currency value for the Paid Price." >*</asp:CompareValidator>
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="lblPaidPrice" runat="server" Text= <%# Eval("PaidPrice","{0:c}") %> ></asp:Label>
</ItemTemplate>
</asp:TemplateField>