Request Object:
Request has five (5) Collections, one (1) Property, and one (1) Method. You'll use the Collections far more than the property or the method.
Request Collections:
Below is a table of the Request Collections and descriptions of how they are used.
Client security info for SSL encryption Cookies Request.Cookies("cookieName")
Holds cookie value stored on the client Form Request.Form("formName")
Holds value sent via HTML Form QueryString Request.QueryString("keyName")
Name/Value pair appended to the end of the URL ServerVariables Request.ServerVariables("variableName")
Hold values sent in the HTTP Headers
ClientCertificate:
Request.ClientCertificate is used with S.S.L. (Secure Sockets Layer). It is beyond the scope of this web site.
Cookies:
We will learn Request.Cookies and Response.Cookies together in Lesson 08. Please be patient.
Form:
Request.Form is probably the workhorse of the Request Collections. The first script is a repeat from Lesson 03.
<%@LANGUAGE="JavaScript"%> <% //No ASP Here, just a regular HTML Page %> <HTML> <STRONG>Type something into the text box and submit it.</STRONG> <FORM ACTION="script08a.asp" METHOD="Post"> <INPUT TYPE="Text" NAME="WebPageVariable"><BR> <STRONG>How Much Money do you make each month?</STRONG><BR> <SELECT NAME="monthlySalary"> <OPTION>Under $5,000,000</OPTION> <OPTION>Above $5,000,000</OPTION> <OPTION>Nobody's darn business.</OPTION> </SELECT><BR> <INPUT TYPE="Submit" VALUE="Submit"> </FORM> </HTML>
Click Here to run script08.asp in a new window. It posts information to script08a.asp which is found below. In turn, script08a.asp posts information to script08b.asp which is also found below.
<%@LANGUAGE="JavaScript"%> <% var WebPageVariable = new String( Request.Form("WebPageVariable") ) WebPageVariable = WebPageVariable.toUpperCase(); var monthlySalary = new String( Request.Form("monthlySalary") ) monthlySalary = monthlySalary.toLowerCase(); %> <HTML> The Web Page Variable you typed is: <%=WebPageVariable%> <BR> The monthly salary you listed is: <%=monthlySalary%> <BR> <FORM ACTION="script08b.asp" METHOD="Get"> <INPUT TYPE="hidden" VALUE="<%=monthlySalary%>" NAME="QueryVariable"> <STRONG>Click the button to see Query Strings</STRONG><BR> <INPUT TYPE="submit" VALUE="Submit"> </FORM> </HTML>
We'll be using Request.Form when we "Post" an HTML form to the server. Notice that the NAME attribute in the HTML form corresponds to the "name" in
QueryString:
We'll be using Request.QueryString when we use an HTML form to "Get" a page from the server. Request.QueryString() is very similar to Request.Form(). Take a look at script08b.asp which I printed below.
<%@LANGUAGE="JavaScript"%> <% var QueryVariable = new String( Request.QueryString("QueryVariable") ) %> <HTML> The QueryString Value is: <%=QueryVariable%> <BR> <% if (QueryVariable != "Lesson 08's new Query!") { QueryVariable="Lesson 08's new Query!" QueryVariable=escape(QueryVariable) %> <A HREF="script08b.asp?QueryVariable=<%=QueryVariable%>">Click Here</A> for the link to <I>script08b.asp?QueryVariable=<%=QueryVariable%></I> <% } //closing bracket for if statement. %> </HTML>
If you haven't already, Click Here to run script08.asp in a new window. Cycle through all the forms and links, and then come back.
You can use Request.QueryString in two different ways. You can either use an HTML form to "Get" a page from the server, which will generate a query string. Or you can manually build a query string and add it to the backside of a link. We'll dissect script08b.asp from top to bottom.
var QueryVariable = new String( Request.QueryString("QueryVariable") )
The line above in script08b.asp corresponds to the line below from script08a.asp
<INPUT TYPE="hidden" VALUE="<%=monthlySalary%>" NAME="QueryVariable">
The NAME="someName" in the HTML form becomes the
About half way into script08b.asp are the lines I reprinted below.
<% if (QueryVariable != "Lesson 08's new Query!") { QueryVariable="Lesson 08's new Query!" QueryVariable=escape(QueryVariable) %>
We've already converted Request.QueryString() into a JavaScript string at the top of the script. So, now we can do a string comparison.
If the QueryVariable hasn't already been set equal to "Lesson 08's new Query!" then we do that. Then we use the
In lesson 14 we'll see a better way to encode URL's. When we study the Server Object, we'll see Server.URLEncode(). But for now, just know that escape() works.
You can have more than one QueryString on each page. If you lose count of your QueryStrings, then you use
The Request Shortcut:
Request.Form() and Request.QueryString() share a shortcut.
ServerVariables:
Server Variables represent the HTTP Headers sent to the server by the client. I won't demonstrate them all, because there are too many.
<%@LANGUAGE="JavaScript"%> <HTML> <TABLE BORDER="1"> <TR><TD>ALL_RAW</TD> <TD><%=Request.ServerVariables("ALL_RAW")%></TD></TR> <TR><TD>REMOTE_ADDR</TD> <TD><%=Request.ServerVariables("REMOTE_ADDR")%></TD></TR> <TR><TD>HTTP_USER_AGENT</TD> <TD><%=Request.ServerVariables("HTTP_USER_AGENT")%></TD></TR> <TR><TD>URL</TD> <TD><%=Request.ServerVariables("URL")%></TD></TR> </TABLE> </HTML>
Click Here to run the script in a new window.
Demonstrated above are four (4) server variables. There are (give or take) about 50 server variables available. You can look up the full list of server variables for yourself on the internet.
Misc. Notes:
Request.BinaryRead() is the lone method and TotalBytes is the lone property.
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 中国武警男声合唱团《辉煌之声1天路》[DTS-WAV分轨]
- 紫薇《旧曲新韵》[320K/MP3][175.29MB]
- 紫薇《旧曲新韵》[FLAC/分轨][550.18MB]
- 周深《反深代词》[先听版][320K/MP3][72.71MB]
- 李佳薇.2024-会发光的【黑籁音乐】【FLAC分轨】
- 后弦.2012-很有爱【天浩盛世】【WAV+CUE】
- 林俊吉.2012-将你惜命命【美华】【WAV+CUE】
- 晓雅《分享》DTS-WAV
- 黑鸭子2008-飞歌[首版][WAV+CUE]
- 黄乙玲1989-水泼落地难收回[日本天龙版][WAV+CUE]
- 周深《反深代词》[先听版][FLAC/分轨][310.97MB]
- 姜育恒1984《什么时候·串起又散落》台湾复刻版[WAV+CUE][1G]
- 那英《如今》引进版[WAV+CUE][1G]
- 蔡幸娟.1991-真的让我爱你吗【飞碟】【WAV+CUE】
- 群星.2024-好团圆电视剧原声带【TME】【FLAC分轨】