listbinding.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 22 行

ASPX
22
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?