.net中 不同的编码对Repeater控件的内容布局有没有影响?
我帮公司做一网页,发现编码为gb2312的时候网页中Repeater控件里的内容布局是好的,改成utf-8就乱了,这是什么原因?一下是Repeater的代码:
<asp:Repeater ID="gvProduct" runat="server">
<ItemTemplate>
<li>
<p>
<a href="productview.aspx?id=<%#Eval("ProductNO")%>"><img src="<%#Eval("Image")%>" border="0" width="158" height="114" alt="1" class="pop_bg"/></a> </p>
<div class="img_height"><a href="productview.aspx?id=<%#Eval("ProductNO")%>"><%#Eval("Name")%></a><br />
国际售价:<%# Eval("OriginPrice", "{0:c2}")%><br />
VIP售价:<%# Eval("Price", "{0:c2}")%> <%# GetKucun(Convert.ToInt32(Eval("Stock")))%>
</div>
</li>
</ItemTemplate>
</asp:Repeater>