wishlistcontrol.ascx.vb

来自「C#语言制作asp.net网上商店的」· VB 代码 · 共 27 行

VB
27
字号

Imports NetShopForge.Library.WishList

Partial Class Admin_Management_Controls_WishListControl
    Inherits System.Web.UI.UserControl


    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        If Not IsPostBack Then

            UserName.Text = Request("username")
            BindData(UserName.Text)

        End If
    End Sub


    Private Sub BindData(ByVal userName As String)


        gvWishList.DataSource = WishController.GetWishList(userName)
        gvWishList.DataBind()

    End Sub
End Class

⌨️ 快捷键说明

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