ASP中的action得不到表单的值
<form id="form1" name="form1" method="post" action="<% = fileName %>?offset=<% response.write(request.form("search2")*NewsNews__perpage) %> ">//其中NewsNews__perpage=10
为什么这样得到的 offset的值,总是要延迟一次的?
这是页面原本的URL:http://localhost/NewsNewss.asp
post的值是延迟一次的,也就是说如果我提交一个数字2,应该是2*10 =20的
但是得到的是 http://localhost/NewsNewss.asp?offset=0
而不是:http://localhost/NewsNewss.asp?offset=20
当我提交3 时,应该是 3 *10=30的,但这时出来offset=20
即这时才得到:http://localhost/NewsNewss.asp?offset=20
下一次我随便提交一个数据,出来的才是offset=30
即 http://localhost/NewsNewss.asp?offset=30
也就是没能实时传值 request("search2")的值,如何在action能实现实时传值?