這篇文章是在日常的工作中總結出來的,下面把四種參數傳遞的形式展示給大家。
何時用GET, 查,刪,
何時用POST,增,改 (特列:登陸用Post,因為不能讓使用者名稱和密碼顯示在URL上)
4種get傳參方式
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <script type="text/javascript"> function Go() { window.location.href="localhost:21811/Handler1.ashx?id=1&name='abc'" } </script> </head> <body>
<form action="Handler1.ashx" method="get"><!--注意action里面的连接不能带参数的-->> <input type="text" name="id" value="3" /> <input type="text" name="name" value="abc" /> <input type="submit" value="通过传递参数" /> </form> </body> </html>
透過以上程式碼的介紹,相信大家都會喜歡的。