ASP.NET簡單問題收集

1.  ASP.NET控件到了前臺經常會改動ID名稱。例如:<asp:Label ID="PaperPrice" runat="server" Text="Label"></asp:Label> ,ID="PaperPrice"到了前臺運行的時候變成了id="body_PaperPrice"。<span id="body_PaperPrice">1000.0000</span>

解決辦法是把控件裏ClientIDMode屬性設置爲Static:<asp:Label ID="PaperPrice" runat="server" ClientIDMode="Static" Text="Label">
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章