你可以做成留言的那种功能:每提交一次接收文件就把username(编制人),aduiter(审批人)一起写进去,然后用一个数据表字段值0或1,默认为0来判断显示不同的人:
1.显示页面:
<%
if rst("判断字段")=0 then
response.write(rst("username"))
else
response.write(rst("aduiter"))
end if
%>
2.处理页面:
<script language="javascript">
//审查留言
function checkup(flag,id)
{
if (flag=="ok")
location="处理页面?page=<%=page%>&act=checkup&id="+id;
else
location="处理页面?page=<%=page%>&act=uncheckup&id="+id;
}
</script>
<%
select case request.QueryString("act")
case "checkup"'审核
sql="update 表 set 判断字段=1 where id="&request.Querystring("id")
conn.execute sql
case "uncheckup"'取消审核留言
sql="update 表set 判断字段=0 where id="&request.Querystring("id")
conn.execute sql
end select
%>
<%
if rst("判断字段")=0 then
%>
<input type="button" name="Submit" value="审核" onclick="javascript:checkup('ok',<%=rst("id")%>);">
<%
else
%>
<input type="button" name="Submit2" value="取消审核" onclick="javascript:checkup('cancel',<%=rst("id")%>);">
<%
end if
%>