2个问题求教大家,这里先道谢了!1.1级目录和2级目录的显示<td><select name="c_id" class="input"><%sql="select cat_id,cat_name from a_cat where sid=0"set rs1=conn.execute(sql)do while not rs1.eofresponse.write "<optgroup label='"&rs1("cat_name")&"'>"sql="select cat_id,cat_name from a_cat where sid="&rs1("cat_id")set rs2=server.createobject("adodb.recordset")rs2.open sql,conn,1,1do while not rs2.eof%><option<% l_bj=strcomp(rs2("cat_id"),csid,1)if l_bj=0 then %>selected<% end if%>value="<%=rs2("cat_id")%>">├ <%=rs2("cat_id")%><%=rs2("cat_name")%></option><%rs2.movenextlooprs1.movenextlooprs1.closeset rs1=nothing%></select></td></tr>其中1级目录是只能显示不能选择,语句为:response.write "<optgroup label='"&rs1("cat_name")&"'>"在网页显示后读取的源代码为:<optgroup label='游戏网游'><optionvalue="5">├ 游戏综合</option><optionvalue="6">├ 网络游戏官方网址现在这样显示的是粗斜体,怎么才能显示为普通正写字体或正写粗体呢。问题2。这是一个弹出提示框产生的问题,我希望把1个变量传递下去。原程序如下:<%if not rs.eof and not rs.bof thenresponse.write"<SCRIPT language=JavaScript>alert('错误提示:\n\n① 此网址已提交过,正等待审核通过,请不要重复提交!\n\n② 您提交的网址已经存在,感谢你的支持!');"response.write"this.top.location.href='input.asp?action=PPP';</SCRIPT>"& csidResponse.Endrs.closeend if%>怎么正确用一个变量(变量名CSID)替代上面的常量PPP.
參考答案:1、把 class="input" 这句去掉 就是普通的字体了。
2、用变量(变量名CSID)替代上面的PPP常量方法:
response.write"this.top.location.href='input.asp?action=" & csid & "';</SCRIPT>"