📄 listbinding.aspx
字号:
<%@ Page Inherits="System.Web.UI.MobileControls.MobilePage" %>
<Script Runat="Server">
Sub Page_Load
Dim colArrayList As New ArrayList
colArrayList.Add( "Star Wars" )
colArrayList.Add( "Gone with the Wind" )
colArrayList.Add( "Citizen Kane" )
lstMovies.DataSource = colArrayList
lstMovies.DataBind()
End Sub
</Script>
<Mobile:Form runat="server">
<b>Now Playing:</b>
<br/>
<Mobile:List ID="lstMovies" Runat="Server"/>
</Mobile:Form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -