关于做论坛首页from里面套表格的问题
<form id="form1" name="form1" method="post" action="login_in.asp"><table width="800" border="0" align="center" cellpadding="0" cellspacing="0" class="font1">
<tr>
<td>
<%
if session("user_id")="" then
%>
用户名
<label>
<input name="user_id" type="text" size="10" />
</label>
<label>密码
<input name="password" type="password" size="10" />
<input type="submit" name="Submit" value="登录" />
<input type="button" name="Submit2" value="注册" onclick="window.open('register1.asp','_self')"/>
</label>
<% else %>
已登录用户
<label>
<input name="user_id" type="text" size="10" value="<%=session("user_id") %>" />
</label>
<a href="login_in.asp">注销</a>
<a href="register_pwd.asp">修改密码</a> <a href="register_update.asp">修改个人信息</a>
<% end if %>
</td>
</tr>
</table>
</form>
这是论坛的表头,我的意识是当没人登陆时显示输入用户名和密码,当user_id不为空时就显示后面的内容,
但是我不明白的时,为什么在from 里面还要在嵌套一个TABY?
请各位大侠们多多指点了