[求助]表单显示不出来
地址栏里变量已经传上去了,但是表单显示不出来不知道是什么问题
谁帮我看看谢谢!!
代码如下:
<%
dim board
board=request.QueryString("board")
%>
<%if board="" then%>
<%if session("p")=2 then%>
欢迎<%=session("adname")%>登陆
<p>
您只有上传和修改的权限!!
<%elseif session("p")=1 then%>
欢迎<%=session("adname")%>登陆
您有最高的权限!!
<%end if%>
<%elseif board="news" then%>
<form name="form1" method="post" action="upnews.asp">
<p>新闻上传:</p>
<p>标题:
<input type="text" name="title">
<br>
内容:<br>
<textarea rows="18" name="contents" cols="60"></textarea>
<br>
<input type="submit" name="b1" value="提交">
<input type="reset" name="b2" value="重置">
</p>
</form>
<%end if%>