以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 用mate跳转页面时,如何post (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=119493) |
-- 作者:jframe -- 发布时间:2018/5/25 17:30:00 -- 用mate跳转页面时,如何post wb.InsertHTML("<meta http-equiv=\'Refresh\' c>") \'直接跳转到首页 e.WriteString(wb.Build) \'生成网页 Return \'必须的 如果把上面代码写成 wb.InsertHTML("<meta http-equiv=\'Refresh\' c>") 如何post方法把loginid和password两个参数的值传到test.jsp页面???
|
-- 作者:有点甜 -- 发布时间:2018/5/25 17:38:00 -- 页面跳转是不能post的,只能get过去,如
http://baidu.com?loginid=123&password=abc
如果要post过去,必须做一个表单,然后提交这个表单过去才行(可以写js提交) |