ASP中LIST控件
1。指定LIST的默认显示项
2。控件的列表项从数组中获得

<select name="RefreshTime" size="1" id="RefreshTime">
<option selected value="<% =ReadRFtime() %>"><% =ReadRFtime()/1000 %></option>
<% for i=1 to RfList(0) %>
<option value=<% =RfList(i) %>><% =RfList(i)/1000 %></option>
<% next %>
</select>
本文介绍了在ASP中如何操作LIST控件,包括设置默认显示项和从数组动态获取列表项的方法。
3292

被折叠的 条评论
为什么被折叠?



