在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
asp教程中get post提交表单区别有以下5点 Get和Post方式的区别有5点 1. get是从服务器上获取数据,post是向服务器传送数据。 HTTP请求:GET与POST方法的区别 HTTP 定义了与服务器交互的不同方法,最基本的方法是 GET 和 POST。事实上 GET 适用于多数请求,而保留 POST 仅用于更新站点。根据 HTTP 规范,GET 用于信息获取,而且应该是 安全的和幂等的。所谓安全的意味着该操作用于获取信息而非修改信息。换句话说,GET 请求一般不应产生副作用。幂等的意味着对同一 URL 的多个请求应该返回同样的结果。完整的定义并不像看起来那样严格。从根本上讲,其目标是当用户打开一个链接时,她可以确信从自身的角度来看没有改变资源。 比如,新闻站点的头版不断更新。虽然第二次请求会返回不同的一批新闻,该操作仍然被认为是安全的和幂等的,因为它总是返回当前的新闻。反之亦然。POST 请求就不那么轻松了。POST 表示可能改变服务器上的资源的请求。仍然以新闻站点为例,读者对文章的注解应该通过 POST 请求实现,因为在注解提交之后站点已经不同了(比方说文章下面出现一条注解); 在表单里使用”post”和”get”有什么区别 在Form里面,可以使用post也可以使用get。它们都是method的合法取值。但是,post和get方法在使用上至少有两点不同: 代码 <!--两个Form只有Method属性不同--> <FORM ACTION=“getpost.php教程” METHOD=“get”> <INPUT TYPE=“text” NAME=“Text” VALUE=“Hello World”></INPUT> <INPUT TYPE=“submit” VALUE=“Method=Get”></INPUT> </FORM> <BR> <FORM ACTION=“getpost.php” METHOD=“post”> <INPUT TYPE=“text” NAME=“Text” VALUE=“Hello World”></INPUT> <INPUT TYPE=“submit” VALUE=“Method=Post”></INPUT> </FORM> <? If Request.QueryString(“Text”) <> ““ Then ?> 通过get方法传递来的字符串是: “<B><?= Request.QueryString(“Text”) ?></B>“<BR> <? End If ?> <? If Request.Form(“Text”) <> ““ Then ?> 通过Post方法传递来的字符串是: “<B><?= Request.Form(“Text”) ?></B>“<BR> <? End If ?> 说明 把上面的代码保存为getpost.asp,然后运行,首先测试post方法,这时候,浏览器的url并没有什么变化,返回的结果是: 通过Post方法传递来的字符串是: "Hello World" 而返回的结果是: 通过get方法传递来的字符串是: "Hello World" 而返回的结果变成: 通过get方法传递来的字符串是: "Hello World" 提示 通过get方法提交数据,可能会带来安全性的问题。比如一个登陆页面。当通过get方法提交数据时,用户名和密码将出现在URL上。如果: 建议 看到这里极客世界小编就为大家分享一个比较好的函数 '获取参数值 Function getForm(element,ftype) Select case ftype case "get" getForm=trim(request.QueryString(element)) case "post" getForm=trim(request.Form(element)) case "both" if isNul(request.QueryString(element)) then getForm=trim(request.Form(element)) else getForm=trim(request.QueryString(element)) End Select getForm=replace(getForm,CHR(34),""") getForm=replace(getForm,CHR(39),"'") End Function 使用方法 Title=getForm("Title", "post") Title2=getForm("Title2", "post") Author=getForm("Author", "post") ContentSource=getForm("ContentSource", "post") Content=getForm("Content", "post") 当然为了安全后期也要加上安全检测函数 '过滤参数 Function filterPara(byVal Para) filterPara=preventSqlin(Checkxss(Para)) End Function Function preventSqlin(content) dim sqlStr,sqlArray,i,speStr sqlStr="<|>|%|%27|%16|'|''|;|*|and|exec|dbcc|alter|drop|insert|select|update|delete|count|master|truncate|char|declare|where|set|declare|mid|chr|union|from|{prefix}|top|user|/|\" if isNul(content) then Exit Function sqlArray=split(sqlStr,"|") for i=lbound(sqlArray) to ubound(sqlArray) if instr(lcase(content),sqlArray(i))<>0 then select case sqlArray(i) case "<":speStr="<" case ">":speStr=">" case "'","""":speStr=""" 'case ";":speStr=";" case else:speStr="" end select content=replace(content,sqlArray(i),speStr) end if next dim num num=0 for i=lbound(sqlArray) to ubound(sqlArray) if instr(lcase(content),sqlArray(i))<>0 then num=1 end if next if num=1 then content=preventSqlin(content) end if preventSqlin=content End Function '过滤xss注入 Function checkxss(byVal ChkStr) dim Str,re Str = ChkStr if IsNull(Str) then Checkxss = "" : Exit Function Str = Replace(Str, "&", "&") : Str = Replace(Str, "'", "´") : Str = Replace(Str, """", """) : Str = Replace(Str, "<", "<") : Str = Replace(Str, ">", ">") : Str = Replace(Str, "/", "/") : Str = Replace(Str, "*", "*") Set re = New RegExp re.IgnoreCase = True : re.Global = True re.Pattern = "(w)(here)" : Str = re.Replace(Str, "$1here") re.Pattern = "(s)(elect)" : Str = re.Replace(Str, "$1elect") re.Pattern = "(i)(nsert)" : Str = re.Replace(Str, "$1nsert") re.Pattern = "(c)(reate)" : Str = re.Replace(Str, "$1reate") re.Pattern = "(d)(rop)" : Str = re.Replace(Str, "$1rop") re.Pattern = "(a)(lter)" : Str = re.Replace(Str, "$1lter") re.Pattern = "(d)(elete)" : Str = re.Replace(Str, "$1elete") re.Pattern = "(u)(pdate)" : Str = re.Replace(Str, "$1pdate") re.Pattern = "(\s)(or)" : Str = re.Replace(Str, "$1or") re.Pattern = "(java)(script)" : Str = re.Replace(Str, "$1script") re.Pattern = "(j)(script)" : Str = re.Replace(Str, "$1script") re.Pattern = "(vb)(script)" : Str = re.Replace(Str, "$1script") If Instr(Str, "expression") > 0 Then Str = Replace(Str, "expression", "e­xpression", 1, -1, 0) Set re = Nothing Checkxss = Str End Function 一般来说内容不用处理,要不容易得不到你想要的结果,其实内容是有代码的情况。 |
请发表评论