ASP.NET简单问题收集

来源:互联网 发布:软件设计师考试难吗 编辑:程序博客网 时间:2024/06/05 05:27

1.  ASP.NET控件到了前台经常会改动ID名称。例如:<asp:Label ID="PaperPrice" runat="server" Text="Label"></asp:Label> ,ID="PaperPrice"到了前台运行的时候变成了id="body_PaperPrice"。<spanid="body_PaperPrice">1000.0000</span>

解决办法是把控件里ClientIDMode属性设置为Static:<asp:Label ID="PaperPrice" runat="server" ClientIDMode="Static" Text="Label">
原创粉丝点击