参数在不同asp页面为何传递不了?
我有一段程序,不知为何参数无法传递过去, 下面是简化的该段程序,恳请各位帮帮忙。'==================================
'=功 能:主调代码,相应功能皆有说明
'==================================
Select case request.QueryString("action")
case "zdlist" '中对本部值班表修改
call zdlist()
case "fslist" '对分布值班表修改
call fslist()
case else
call zdlist()
End Select
'==================================
'=过 程 名:fslist
'=功 能:修改分室值班表
'==================================
sub fslist()
if request.Form("fslist")="ture" then
id=request.querystring("IID")
response.write id
end if
%>
<table align="center" class="tableBorder" width="100%" border="1" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF" style="border-collapse: collapse" bordercolor="#1a56c5">
<form name="form" method="post" action="">
<%
....省略
IID=5
%>
<tr>
<td colspan="7" height="25" align="center" width="100%" >
<input class="button" type="submit" name="Submit" value="保存修改" style="font-family: 宋体; font-size: 9pt" >
<input type="hidden" name="fslist" value="true">
<input type="hidden" name="id" value="<%=IID%>">
</td>
</tr>
</form>
</table>
<%
end sub
%>