?? tio-arraylist.aspx
字號:
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load()
{
ArrayList ShippersArrayList = new ArrayList();
ShippersArrayList.Add("none");
ShippersArrayList.Add("Canada Post");
ShippersArrayList.Add("UPS");
ShippersArrayList.Insert(1,"FedEx");
MyDropDownList.DataSource = ShippersArrayList;
MyDropDownList.DataBind();
} //End Page_Load()
</script>
<html>
<head>
<title>ArrayList Example</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<asp:dropdownlist id="MyDropDownList" runat="server"></asp:dropdownlist>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -