让我也来写一个吧.
<%
dim a
a="二类"
%>
<select>
<option value="一类" <%if a="一类" then response.Write("selected") else response.Write("") end if%>>一类</option>
<option value="二类" <%if a="二类" then response.Write("selected") else response.Write("") end if%>>二类</option>
<option value="三类" <%if a="三类" then response.Write("selected") else response.Write("") end if%>>三类</option>
</select>
在里面的if语句,可以用 ?: (不知道叫什么了) 这种更简便的形式来判断和输出的。
[此贴子已经被作者于2007-7-15 1:30:11编辑过]