




已閱讀5頁,還剩2頁未讀, 繼續(xù)免費閱讀
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
WhatisanASPFile?WithASPfiles,youcanactivateyourWebsiteusinganycombinationofHTML,scripting-suchasJavaScriptorVisualBasicScriptingEdition(VBScript)-andcomponentswritteninanylanguage.ThismeansyourASPfileissimplyafilethatcancontainanycombinationofHTML,scripting,andcallstocomponents.WhenyoumakeachangeontheASPfileontheserver,youneedonlysavethechangestothefilethenexttimetheWebpageisloaded,thescriptwillautomaticallybecompiled.Howdoesthishappen?ItworksbecauseASPtechnologyisbuiltdirectlyintoMicrosoftWebservers,andisthussupportedonallMicrosoftWebservers:WindowsNTInternetInformationServer(IIS)3.0,WindowsNTWorkstation,andWindows95PersonalWebServer.TheobjectmodelofASP,MicrosoftstyleHereshowitworks.WhenabrowserrequestsanASPfilefromyourWebserver,yourWebservercallsActiveServerPagestoreadthroughtheASPfile,executinganyofthecommandscontainedwithinandsendingtheresultingHTMLpagetothebrowser.AnASPfilecancontainanycombinationofHTML,script,orcommands.Thescriptcanassignvaluestovariables,requestinformationfromtheserver,orcombineanysetofcommandsintoprocedures.ASPusesthedelimiters(betterknowntoyouandmeasthing-a-ma-bobsthatspecifythebeginningandend)toenclosescriptcommands.Forexample,thecodebelowsetsthevalueofthevariableMyFavTVShowintheusercookiestoIDreamofJeannie.ThescriptinglanguagessupportedbyASPinturnsupportuseoftheIf-Then-Elseconstruct(somethingthatwillundoubtedlywarmtheheartsofallcodersoutthere).Finally,youcanembedsomereallogicintoyourHTML.Forexample,thefollowingcodefromtheIISdocumentationshowshowyoucansetthegreetingshownbaseduponthetimeofday.=#12:00:00AM#AndTimeGoodMorning!Hello!ImsurethatyoucanthinkofsomethingmoreinterestingforyourWebsiteIdhatetohavetocomeupwithallofthecleverideas.Built-inObjectsASPincludesfivestandardobjectsforglobaluse:RequesttogetinformationfromtheuserResponsetosendinformationtotheuserServertocontroltheInternetInformationServerSessiontostoreinformationaboutandchangesettingsfortheuserscurrentWeb-serversessionApplicationtoshareapplication-levelinformationandcontrolsettingsforthelifetimeoftheapplicationTheRequestandResponseobjectscontaincollections(bitsofinformationthatareaccessedinthesameway).Objectsusemethodstodosometypeofprocedure(ifyouknowanyobject-orientedprogramminglanguage,youknowalreadywhatamethodis)andpropertiestostoreanyoftheobjectsattributes(suchascolor,font,orsize).TheRequestobjectTheRequestobjectisusedtogetinformationfromtheuserthatispassedalonginanHTTPrequest.AsImentionedearlier,theRequestandResponseobjectssupportcollections:ClientCertificatetogetthecertificationfieldsfromtherequestissuedbytheWebbrowser.ThefieldsthatyoucanrequestarespecifiedintheX.509standardQueryStringtogettextsuchasaname,suchasmyfavoriteTVsitcomaboveFormtogetdatafromanHTMLformCookiestogetthevalueofapplication-definedcookieServerVariablestogetHTTPinformationsuchastheservernameTheResponseobjectTheResponseobjectisusedtosendinformationtotheuser.TheResponseobjectsupportsonlyCookiesasacollection(tosetcookievalues).TheResponseobjectalsosupportsanumberofpropertiesandmethods.Propertiescurrentlysupportedare:Buffersettobufferpageoutputattheserver.Whenthisissettotrue,theserverwillnotsendaresponseuntilalloftheserverscriptsonthecurrentpagehavebeenprocessed,oruntiltheFlushorEndmethodhasbeencalled.ContentTypetosetthetypeofcontent(i.e:text/HTML,Excel,etc.)Expiressetstheexpiration(whenthedataintheuserscacheforthisWebpageisconsideredinvalid)basedonminutes(i.e.:expiresin10minutes).ExpiresAbsoluteallowsyoutosettheexpirationdatetoanabsolutedateandtime.Statusreturnsthestatusline(definedintheHTTPspecificationfortheserver).ThefollowingmethodsaresupportedbytheResponseobject:AddHeaderAddsanHTMLheaderwithaspecifiedvalueAppendToLogAppendsastringtotheendoftheWebserverlogfileBinaryWritewritesbinarydata(i.e,Excelspreadsheetdata)ClearclearsanybufferedHTMLoutput.Endstopsprocessingofthescript.Flush-sendsalloftheinformationinthebuffer.RedirecttoredirecttheusertoadifferentURLWritetowriteintotheHTMLstream.ThiscanbedonebyusingtheconstructResponse.write(hello)ortheshortcutcommandTheServerobjectTheServerobjectsupportsoneproperty,ScriptTimeout,whichallowsyoutosetthevalueforwhenthescriptprocessingwilltimeout,andthefollowingmethods:CreateObjecttocreateaninstanceofaservercomponent.Thiscomponentcanbeanycomponentthatyouhaveinstalledonyourserver(suchasanActiveX).HTMLEncodetoencodethespecifiedstringinHTML.MapPathtomapthecurrentvirtualpathtoaphysicaldirectorystructure.Youcanthenpassthatpathtoacomponentthatcreatesthespecifieddirectoryorfileontheserver.URLEncodeappliesURLencodingtoaspecifiedstring.TheSessionobjectTheSessionobjectisusedtostoreinformationaboutthecurrentusersWeb-serversession.Variablesstoredwiththisobjectexistaslongastheuserssessionisactive,evenifmorethanoneapplicationisused.Thisobjectsupportsonemethod,Abandon,which(believeitornot!)abandonsthecurrentWeb-serversession,destroyinganyobjects,andsupportstwoproperties,SessionID,containingtheidentifierforthecurrentsession,andTimeout,specifyingatime-outvalueforthesession.Onethingtobearinmindaboutthesessionidentifier:ItsnotaGUID.ItsonlygoodaslongasthecurrentWeb-serversessionisrunning.IfyoushutdowntheWeb-serverservice,theidentifierswillstartalloveragain.SodontuseittocreatelogonIDs,oryoullhaveabunchofduplicatesandoneheckofaheadache.TheApplicationobjectTheApplicationobjectcanstoreinformationthatpersistsfortheentirelifetimeofanapplication(agroupofpageswithacommonroot).Generally,thisisthewholetimethattheIISserverisrunning.Thismakesitagreatplacetostoreinformationthathastoexist
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 汽車構(gòu)造經(jīng)典試題及答案(含8套試卷題)
- 沙雕評測題目及答案
- 2023-2024學年河南省駐馬店市高二下學期7月期末質(zhì)量監(jiān)測數(shù)學試題(解析版)
- 2025屆福建省部分地市高三三模語文試題(解析版)
- 2025年秋三年級上冊語文同步教案 口語交際:請教
- 食堂防疫管理制度
- 作坊機械設(shè)備管理制度
- 供應室應設(shè)備管理制度
- 供暖搶修團隊管理制度
- 供水公司行政管理制度
- 2024-2025學年八年級下冊道德與法治期末測試模擬卷(統(tǒng)編版)(含答案)
- 2025年社區(qū)工作者考試題目及答案
- 定額〔2025〕1號文-關(guān)于發(fā)布2018版電力建設(shè)工程概預算定額2024年度價格水平調(diào)整的通知
- 2023年貴州貴州貴安發(fā)展集團有限公司招聘筆試真題
- 2024年山東鐵投集團招聘筆試參考題庫含答案解析
- 新教材教科版五年級下冊科學全冊課時練(課后作業(yè)設(shè)計)(含答案)
- 廣西基本醫(yī)療保險異地就醫(yī)備案登記表-示例樣表
- 供應商綠色環(huán)保環(huán)境管理體系評估表
- GB∕T 11344-2021 無損檢測 超聲測厚
- 外科無菌操作技術(shù)PPT學習教案
- 寶興縣中藥材生產(chǎn)現(xiàn)狀及發(fā)展思路
評論
0/150
提交評論