刚开始学做WAP页面,有个不明白的地方请教一下:有3个页面,A.aspx B.aspx C.aspx
A页面里提交表单到B页面,
<anchor title="登录系统"><font style="font-size:12px;">登录系统</font>
<go href="PhoneActList.Aspx" method="post">
<postfield name="method" value="login"/>
<postfield id="username" name="username" value="$(nameV)" accept-charset="utf-8"/>
</go>
</anchor>
B页面跳转到C页面
Response.AddHeader("Location", "C.aspx");
Response.StatusCode = 301;
Response.End();
C页面也包含表单
<anchor title="下一步"><font style="font-size:12px;">下一步</font>
<go href="PhoneActList.Aspx" method="post">
<postfield name="method" value="login"/>
<postfield id="username" name="username" value="$(nameV)" accept-charset="utf-8"/>
</go>
</anchor>
现在我碰到一个问题,为什么跳转后,C页面的"下一步"按钮不能点呢,好象是纯文本。
如果直接打开C页面,那么"下一步"按钮就正常了。
请给点指点,是anchor有什么限制吗?
------解决方案--------------------------------------------------------
不了解,不过B跳到C似乎少了参数设置