您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何使用ASP.NET 2.0 FormView顯示數據”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使用ASP.NET 2.0 FormView顯示數據”吧!
ASP.NET 2.0 FormView:添加一個FormView到CustomColors.aspx中,設置其ID為LowStockedProductsInRed,像前一個步驟一樣綁定數據到ObjectDataSource中,這將在FormView中創建ItemTemplate, EditItemTemplate, 和InsertItemTemplate . 移除EditItemTemplate和InsertItemTemplate 并在 ItemTemplate 中僅包含ProductName 和UnitsInStock 項, 在智能感知中檢查Allow Paging(分頁)標記是否被選上
在這些操作后FormView的代碼大概會成這樣
< asp:FormView ID="LowStockedProductsInRed" runat="server" DataKeyNames="ProductID" DataSourceID="ObjectDataSource1" AllowPaging="True" EnableViewState="False"> < ItemTemplate> < b>Product:< /b> < asp:Label ID="ProductNameLabel" runat="server" Text='< %# Bind("ProductName") %>'> < /asp:Label>< br /> < b>Units In Stock:< /b> < asp:Label ID="UnitsInStockLabel" runat="server" Text='< %# Bind("UnitsInStock") %>'> < /asp:Label> < /ItemTemplate> < /asp:FormView>
ASP.NET 2.0 FormView的代碼。注意ItemTemplate 包含的代碼:
◆靜態HTML – “Product:” 和 “Units In Stock:” 包含 < br /> 和 < b> 元素.
◆Web 控件– 兩個Label控件, ProductNameLabel 和UnitsInStockLabel.
◆綁定表達式 –< %# Bind("ProductName") %> 和< %# Bind("UnitsInStock") %> 表達式, 綁定值到Label的Text屬性上
感謝各位的閱讀,以上就是“如何使用ASP.NET 2.0 FormView顯示數據”的內容了,經過本文的學習后,相信大家對如何使用ASP.NET 2.0 FormView顯示數據這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。