default.aspx

来自「This is a book about vb.you could learn 」· ASPX 代码 · 共 30 行

ASPX
30
字号
<%@ Page debug="true" %>

<%@ Register TagPrefix="Wrox" Namespace="WroxControls" 
			  Assembly="DictionaryLister" %>

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

	Sub Page_Load( sender As Object , e As EventArgs )
		
		Dim names() As String = {"Richard", "Alex", "Rob"}

		SessionList.DataSource = names
	
	End Sub
	
</script>

<form runat="server">

	<Wrox:ICollectionLister id="SessionList" runat="server">

		<HeadingStyle ForeColor="Blue">
			<Font Size="18"/>
		</HeadingStyle>

		<ItemStyle ForeColor="Green" Font-Size="12"/>

	</Wrox:ICollectionLister>

</form>

⌨️ 快捷键说明

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