当前位置: 代码迷 >> ASP.NET >> 参数传递有关问题
  详细解决方案

参数传递有关问题

热度:8092   发布时间:2013-02-25 00:00:00.0
参数传递问题
<FORM   id=form1   action=http://www.cma.gov.cn/tqyb/url   method=post>
<INPUT   maxLength=20   size=10   name=city>
<INPUT   type=submit   value=提交   name=Submit>  
</FORM>
在上面页面中输入不同的城市返回不同的页面,如输入 "上海 ",则返回下面内容:
http://www.cma.gov.cn/tqyb/weatherdetail/58367

我想知道参数是怎样传递的?

------解决方案--------------------------------------------------------
<FORM id=form1 action=http://www.cma.gov.cn/tqyb/url method=post>
<INPUT maxLength=20 size=10 name=city>
<INPUT type=submit value=提交 name=Submit>
</FORM>
在上面页面中输入不同的城市返回不同的页面,如输入 "上海 ",则返回下面内容:
http://www.cma.gov.cn/tqyb/weatherdetail/58367

其实原理和你以前.net写法一样的
http://www.cma.gov.cn/tqyb/url 基本就是URLWRiter写法。彷静态的动态写法
url文件可能会是url.asp or url.php url.jsp...
所以你懂原来写法就清楚参数是直接POST过去的
------解决方案--------------------------------------------------------
路过
------解决方案--------------------------------------------------------
<html>
<head>
<meta http-equiv= "Content-Type " content= "text/html; charset=utf-8 / ">
</head>
<form action= "http://www.cnsuper-power.com/url " method= "post ">
<input type= "text " name= "city " id= "city " />
<input type= "submit " />
</form>
</html>
试着输入上海或广州
  相关解决方案