asp里的表单form的action路径

 

 

asp里的表单form的action路径:

 

1. <form name="form1" method="post" action="web/manage/check.asp">

 

此时,访问时网址为:http://localhost/项目名称/web/manage/check.asp

 

 

 

 

2.  <form name="form1" method="post" action="../web/manage/check.asp">

 

此时,访问时网址为:http://localhost/项目名称/web/manage/check.asp  

 

 

3.  <form name="form1" method="post" action="/web/manage/check.asp">

 

此时,访问时网址为:http://localhost/web/manage/check.asp  

 

 

注意:1,2为有项目名称的网址,3为无项目名称的网址;

 

 

 

你可能感兴趣的:(Web,asp)