⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menu.aspx

📁 visual studio.net学习资料
💻 ASPX
字号:
<%@ Page Language="vb" %>
<%@ Import Namespace="System.Data" %>

<script language="VB" runat="server">        

    Sub Page_Load(sender As Object, e As EventArgs) 
            
        Dim dvMenuItems As DataView 
        Dim products As New Conference.ProductsDB 
            
        dvMenuItems = products.GetProductCategories().Tables(0).DefaultView
        
        ' Bind the DataView of menu items to the list
        lstMenu.DataSource = dvMenuItems
        lstMenu.DataBind()
        
    End Sub

</script>

<html>

  <body>

    <asp:DataList id="lstMenu" width="145" runat="server">
      <template name="ItemTemplate">
         
         <asp:HyperLink id="HyperLink1" CssClass="MenuUnselected"
			Text='<%# Container.DataItem("CategoryName") %>' 
			NavigateUrl='<%# "productslist.aspx?CategoryID=" & _
				Container.DataItem("CategoryID") %>' 
			runat="server" />
                                  
      </template>
                                                                  
    </asp:DataList>
     
  </body>

</html>      
                    

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -