版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
畢業(yè)設(shè)計〔論文〕英文翻譯學(xué)院:信息技術(shù)學(xué)院專業(yè):計算機科學(xué)及技術(shù)學(xué)生姓名:王佩學(xué)號:0506120502題目:基于Web的網(wǎng)絡(luò)商品銷售系統(tǒng)指導(dǎo)教師:張漪日期:20212月27日〔中文文獻〕MicrosoftActiveServerPages即我們所稱的ASP,其實是一套微軟開發(fā)的效勞器端腳本環(huán)境,ASP內(nèi)含于IIS3.0和4.0之中,通過ASP我們可以結(jié)合HTML網(wǎng)頁、ASP指令和ActiveX元件建立動態(tài)、交互且高效的WEB效勞器應(yīng)用程序。有了ASP你就不必擔憂客戶的閱讀器是否能運行你所編寫的代碼,因為全部的程序都將在效勞器端執(zhí)行,包括全部嵌在一般HTML中的腳本程序。當程序執(zhí)行完畢后,效勞器僅將執(zhí)行的結(jié)果返回給客戶閱讀器,這樣也就減輕了客戶端閱讀器的負擔,大大進步了交互的速度。以下羅列了ActiveServerPages所獨具的一些特點:1.運用VBScript簡潔易懂的腳本語言,結(jié)合HTML代碼,即可快速地完成網(wǎng)站的應(yīng)用程序。2.無須compile編譯,簡潔編寫,可在效勞器端干脆執(zhí)行。3.運用一般的文本編輯器,如Windows的記事本,即可進展編輯設(shè)計。4.及閱讀器無關(guān)(BrowserIndependence),用戶端只要運用可執(zhí)行HTML碼的閱讀器,即可閱讀ActiveServerPages所設(shè)計的網(wǎng)頁內(nèi)容。ActiveServerPages所運用的腳本語言(VBScript、Jscript)均在WEB效勞器端執(zhí)行,用戶端的閱讀器不需要可以執(zhí)行這些腳本語言。5.ActiveServerPages能及任何ActiveXscripting語言相容。除了可運用VBScript或JScript語言來設(shè)計外,還通過plug-in的方式,運用由第三方所供應(yīng)的其他腳本語言,譬如REXX、Perl、Tcl等。腳本引擎是處理腳本程序的COM(ComponentObjectModel)物件。6.ActiveServerPages的源程序,不會被傳到客戶閱讀器,因此可以防止所寫的源程序被別人剽竊,也進步了程序的平安性。7.可運用效勞器端的腳原來產(chǎn)生客戶端的腳本。8.物件導(dǎo)向〔Object-oriented〕。9.ActiveXServerComponents(ActiveX效勞器元件)具有無限可擴大性??梢赃\用VisualBasic、Java、VisualC++、COBOL等編程語言來編寫你所需要的ActiveXServerComponent。ASP的奇異之處真是數(shù)不勝數(shù),下面就請各位系好平安帶,我將帶著大家進入ASP的夢幻世界。ASP運行環(huán)境:erMicrosoftPersonalWebServeronWindows95/98正如前文所述,及一般的程序不同,.asp程序無須編譯,ASP程序的限制部份,是運用VBScript、JScript等腳本語言來設(shè)計的,當執(zhí)行ASP程序時,腳本程序?qū)⒁徽讎诟腊l(fā)送給腳本說明器(即腳本引擎),由腳本說明器進展翻譯并將其轉(zhuǎn)換成效勞器所能執(zhí)行的囑咐。當然,同其他編程語言一樣,ASP程序的編寫也遵循確定的規(guī)則,假設(shè)你想運用你所寵愛的腳本語言編寫ASP程序,則你的效勞器上必需要有能說明這種腳本語言的腳本說明器。當你安裝ASP時,系統(tǒng)供應(yīng)了兩種腳本語言:VBsrcipt和JScript,而VBscript則被作為系統(tǒng)默認的腳本語言。你也可以依據(jù)自己的愛好變更系統(tǒng)默認的腳本語言。ASP本身并不是一種腳本語言,它只是供應(yīng)了一種使鑲嵌在HTML頁面中的腳本程序得以運行的環(huán)境。但是,要學(xué)好ASP又必需駕馭它的語法和規(guī)則。如今就讓我們開始一步一步地相識并學(xué)習ActiveServerPages。ASP程序其實是以擴展名為.asp的純文本形式存在于WEB效勞器上的,你可以用任何文本編輯器翻開它,ASP程序中可以包含純文本、HTML標記以及腳本囑咐。你只需將.asp程序放在WEB效勞器的虛擬書目下〔該書目必需要有可執(zhí)行權(quán)限〕,就可以通過WWW的方式訪問ASP程序了。要學(xué)好ASP程序的設(shè)計,必需駕馭腳本的編寫,則終究什么是腳本呢?其實腳本是由一系列的腳本囑咐所組成的,猶如一般的程序,腳本可以將一個值賦給一個變量,可以囑咐WEB效勞器發(fā)送一個值到客戶閱讀器,還可以將一系列囑咐定義成一個過程。要編寫腳本,你必需要熟識至少一門腳本語言,如VBScript。腳本語言是一種介乎于HTML和諸如JAVA、VisualBasic、C++等編程語言之間的一種特別的語言,盡管它更接近后者,但它卻不具有編程語言困難、嚴謹?shù)恼Z法和規(guī)則。如前所述ASP所供應(yīng)的腳本運行環(huán)境可支持多種腳本語言,譬如:JScript、REXX、PERL等等,這無疑給ASP程序設(shè)計者供應(yīng)了廣泛的發(fā)揮余地。ASP的出現(xiàn)使得廣袤WEB設(shè)計者不必在為客戶閱讀器是否支持而擔憂,事實上就算你在同一個.asp文件中運用不同的腳本語言,你都無須為此擔憂,因為全部的一切都將在效勞器端進展,客戶閱讀器得到的只是一個程序執(zhí)行的結(jié)果,而你也只需在.asp中聲明運用不同的腳本語言即可。下面是一個典型的在同一.asp文件中運用兩種腳本語言的例子:<HTML><BODY><TABLE><%CallCallme%></TABLE><%CallViewDate%></BODY></HTML><SCRIPTLANGUAGE=VBScriptRUNAT=Server>SubCallmeResponse.Write"<TR><TD>Call</TD><TD>Me</TD></TR>"EndSub</SCRIPT><SCRIPTLANGUAGE=JScriptRUNAT=Server>functionViewDate(){varxx=newDate()Response.Write(x.toString())}</SCRIPT>這是各位在本文中接觸的第一個真正的ASP程序,千萬不要被“<%%>〞符號搞糊涂,這其實是標準的ASP定界符,而“<SCRIPT></SCRIPT>〞之間的就是腳本語言。ASP不同于腳本語言,它有自己特定的語法,全部的ASP囑咐都必需包含在<%和%>之內(nèi),如:<%test="English"%>,ASP通過包含在<%和%>中的表達式將執(zhí)行結(jié)果輸出到客戶閱讀器,如:<%=test%>就是將前面賦給變量test的值English發(fā)送到客戶閱讀器中,而當變量test的值為Mathematics時,以下程序:Thisweekendwewilltest<%=test%>.在客戶閱讀器中則顯示為:ThisweekendwewilltestMathematics.學(xué)習ASP最好的方法莫過于親自動手編寫,為了在最短的時間內(nèi)使各位駕馭ASP的程序設(shè)計技巧,本文將實行實例分析法,通過一系列的實例讓各位在理論中學(xué)習ASP。建立一個ASP頁面,你所需的只是翻開一個文本編輯器,如:Notepad,然后跟我開始動手編寫第一個ASP程序。下面我們將建立一個自動監(jiān)測閱讀時間并依據(jù)不同時段動態(tài)顯示不同頁面內(nèi)容的ASP程序,請將以下代碼剪貼到你的文本編輯器中,并存為test1.asp:<html><body><FONTCOLOR="Green"><%IfTime<#12:00:00#AndTime>=#00:00:00#Then%>早上好,今日天氣不賴啊!<%ElseIfTime<#19:00:00#AndTime>=#12:00:00#Then%>下午好!<%Else%>哈嘍!今晚你有沒有去IRC閑聊!<%EndIf%></body></html>將test1.asp保存在WEB效勞器的虛擬書目(如:aspsamp/)下,并在閱讀器中用的方式進展閱讀:://yourcomputername/aspsamp/test1.asp,你將會新穎 地覺察,你的頁面真的活起來了。雖然,這只是一個特別簡潔的實例,而且這一功能完全可以通過JavaScript完成,但是不難覺察運用ASP要比JavaScript簡潔、快速得多,而且運用此法,你完全可以輕而易舉地令你的網(wǎng)頁在不同的時段展示不同的風格。此例中的“Time〞事實上是一個VBScript內(nèi)置的顯示系統(tǒng)當前時間的函數(shù),由于系統(tǒng)默認的腳本語言是VBScript,因此當你在ASP囑咐中調(diào)用該函數(shù)時,腳本引擎會自動將其轉(zhuǎn)換成當前的系統(tǒng)時間。接下來我們將給test1.asp添加一點色調(diào),在<body>標識中添加“bgcolor="<%=bgc%>〞即變?yōu)?lt;bodybgcolor="<%=bgc%>">,并在<body>標記前添加如下語句:<%IfTime<#12:00:00#AndTime>=#00:00:00#Thenbgc="silver"ElseIfTime<#19:00:00#AndTime>=#12:00:00#Thenbgc="navy"Elsebgc="red"EndIf%>如此一來,當用戶在不同的時段訪問你的頁面時,他們將會看到不同的頁面背風光。我們可以做的事情還有許多,譬如你想知道在凌晨至十二點之間閱讀你頁面的客戶的姓名,并向他或她問好,則下面的這段程序?qū)⒛苤氵_成心愿。首先你需要在頁面中設(shè)置表單,將以下HTML代碼剪貼到“<%IfTime<#12:00:00#AndTime>=#00:00:00#Then%>〞之后:歡迎光臨我的主頁,請?zhí)顚懸韵滦畔?<FORMMETHOD="POST"ACTION="test1.asp"><P>FirstName:<INPUTNAME="fname"SIZE="48"><P>LastName:<INPUTNAME="lname"SIZE="48"><P>Title:<INPUTNAME="title"TYPE=RADIOVALUE="mr">Mr.<INPUTNAME="title"TYPE=RADIOVALUE="ms">Ms.<P><INPUTTYPE=SUBMIT><INPUTTYPE=RESET></FORM>然后在以上HTML代碼后面添加如下ASP囑咐:<%title=request.form("title")iftitle="mr"then%>歡迎您Mr.<%=request.form("fname")%>。<%elseiftitle="ms"then%>歡迎您Ms.<%=request.form("fname")%>。<%else%><B><fontcolor=blue>歡迎您<%=request.form("fname")&""&request.form("lname")%>。</font></B><%endif%>保存文件test1.asp,并在閱讀器中以方式進展閱讀,假設(shè)此時的系統(tǒng)時間在凌晨0:00:00和中午12:00:00之間的話,閱讀器將顯示如下畫面:這其實是一個在Internet和Intranet上常見的功能,即當用戶在閱讀器端填寫完表單后,通過調(diào)用一個通用網(wǎng)關(guān)程序?qū)⒂脩魯?shù)據(jù)傳送到效勞器,由效勞器進展處理后再將結(jié)果返還給客戶閱讀器。過去為了實現(xiàn)這樣的功能必需編寫一個獨立于HTML之外的CGI程序,并通過HTML進展調(diào)用,撇開CGI編寫困難等缺點不談,CGI的執(zhí)行效率也是一個大問題,每一個表單(form)均須執(zhí)行一個可執(zhí)行文檔,當多人同時上線運用時,多個文檔同時執(zhí)行,將大大降低WEB效勞器的執(zhí)行速度,如今ASP供應(yīng)了及HTML完全相融的編程環(huán)境,明顯要比運用CGI便捷得多。在本期的最終讓我們再來看看ASP的循環(huán)功能,譬如你渴望當客戶在晚間7:00至凌晨0:00:00閱讀你的頁面時,在頁面中央顯示6個笑臉表示問候,則你只需要將以下囑咐剪貼到“GoodEvening!〞后面即可:<%fori=1to6%><p><center><imgsrc="smile.gif"width="32"height="32"alt="晚上好"></p><%next%>這是一個最最根本的循環(huán)語句,它將一個笑臉圖片重復(fù)調(diào)用六次并顯示在頁面上。當然此例的效果完全可以用HTML做到,但是不難覺察運用ASP大大縮短了代碼的重復(fù)編寫,使得程序具有良好的可閱讀性。另外,當你制作一個諸如依據(jù)用戶投票來給所評測的對象評定星級的評測站點時,運用此法,你就完全不需要為每一個星級制作一幅圖片。假設(shè)一個對象被評為4星級,那只需將一顆星的圖片循環(huán)顯示4次,類推即可。摘自ASP語言學(xué)問介紹Johnson〔外文翻譯〕MicrosoftActiveServerPagesnamelyIanASPforcalling,itssolidisasetoftinyandsoftopenamachineofthehaircarryfeetthiswreath,theinsideofASPiscontainedinIIS3.0with4.0itisinside,overASPIcanmatchwiththeknottheHTMLnetpage,ASPpointthereamtoshouldusethedistanceprefacewiththeActiveXaWEBforsettingupmoving,handingoverwitheachotherandhigheffectamachine.ThereisASPyounotnecessarilyaheartadistanceforofthemachineofisonbehalftodeniestocancarryalineofyouaplaitwritecode,becauseofforhavingprefacewillcarryafeetfor,ofpackcontaininHTMLthisdistanceprefaceinamachine.Thedistanceprefacelineisovertofinishbehind,amachineonlyanegativeloadforofknotfruitreturningreturningtoamachine,thiskindtooreducinglightlyadoorcarryingthemachineof,bigandbiglifthighhandoverwitheachotherandsoondegree.ThennextrowtheActiveServerPageshasonlyofatheamountiswithordering:1.MakeuseVBScript,JScript...etc.Chiensingleeasilyfeetthislanguagethatunderstandtalks,theknotmatchestheHTMLonbehalfcode,canningbeoverquicklyandsoonnamelythenetstandsofshouldusethedistancepreface.2.Havenomustcompiletheplaittranslates,permittingtheeasyplaitwrite,cancarrytokeepconnectinginamachinethelineof.3.Maketextthisplaitmachinethatusethe,iftheWindowsrecordsthematterthis,canenternamelyaplaitestablishestoaccount.4.Havenopass(BrowserIndependence)withthemachineof,useathemachineofforcarryingwanttomakeusecanaHTMLcode,namelycantheActiveServerPagesanetforestablishingaccountingpageinsidepermit.ActiveServerPagesafeetformakingusingthislanguagespeech(VBScript,Jscript)allcarriesintheWEBamachineathemachineoffor,usingfirstthedoorcarrydoesnotneedtowantcanenoughathisamount'sfeetthislanguagespeech.5.ActiveServerPagescanwithtermwhytheActiveXscriptinglanguagespeechpermitsmutually.InadditiontocanningmakeestablishwithVBScriptorJScriptlanguagespeechestoaccount,returntheovertheplug-insquaretype,makeusefromthethirdanitshisfeetforliftingprovidingthislanguagespeech,suchasREXX,Perl,etc.ofTcl,.FeetthisleadistheCOM(ComponentObjectModel)thingpieceofareasonfeetthisdistancepreface.6.ActiveServerPagessourcedistancepreface,can'twerespreadamachine,becauseofandcantoavoidtodonotneedasourceforwritingdistanceprefacedrivehisperson,alsolifthighthepeacefulwholesexofthedistancepreface.7.Canmakeusethefeetthatamachinecarrythisproducetolivingafeetforthedoorcarrythis.8.Thethingpieceleadsthedirection.(Object-oriented)9.TheActiveXServerComponents(ActiveXamachineapiece)havetohavenolimitcan.CantomaketousetheVisualBasic,Java,VisualC++,COBOLetc.plaitdistancelanguagespeechweavestowriteyouranActiveXforneedingwantingServerComponent.ASPstrangeandwonderfuladreamfortrueisnotofraising,descendingpleasingeachlyisverypeacefulandalllytaking,IwilltakinggettingbighouseenteringintoASPalifetimeboundary.Awreathforfirst,lettingIcomingseeingcarryingalineoflytheASPneed:MicrosoftPeerWebServicesVersion3.0onWindowsNTWorkstationMicrosoftPersonalWebServeronWindows95/98Itispositivetoisnotsuchastheex-textadistanceforsaying,withfirstsortprefacetogether,.Theaspdistanceprefacehasnoandmustweavetotranslate,theASPdistanceprefacecontrolstomakea,istomakeestablishwithVBScript,JScript...etc.feetthislanguagespeechtoaccountof,betheanASPdistancepreface,feetthisdistanceprefacewillathewholesetoflifereamhairsendstoreleasefeetthissolutionthemachine(namelyfeetthisleadthe),beingreleasedbyfeetthissolutionthemachineenteralineofturningovertotranslatetocombineitsturntochangealifeforcanthelineofream.Whenhowever,togetheritsheweavethedistancelanguagetalksakind,theASPdistanceprefaceplaitwritestoothefollowsatherulesthatsettleisthen,suchasfruityouwantstomakeuseyourafeetforpleasedlovethislanguagespeechplaitwritestheASPdistancepreface,thatyouofamachinethetopmusthavenecessarilyandcansolvefeetthissolutionthatreleasethistypeoffeetthislanguagespeechreleasesthemachine.WhenyouarepeacefultopacktheASP,istheliftedtoprovidetwokindsoffeetsthislanguagespeech:VBsrciptwithJScript,buttheVBscriptwerethenmadeforisfeetthislanguagespeechthatrecognize.YoutoocanwithrootaccordingtofromFofpleasedliketochangetobecomeisfeetthislanguagespeechthatrecognize.ASPthisbodyisnotakindoffeetthislanguagetotalk,itsisawreathtoliftedtoprovideakindofmakinggotinHTMLpagefeetinthisdistanceprefacetocarryline.Butis,tolearnthegoodASPagainandnecessarilymustthelanguagemethodthatholditisthenwiththerules.NowatletIopentostartastepperstepgroundrecognizestoknowtocombinetolearntheActiveServerPages.ASPdistanceprefaceitssolidregardexhibitionas.AsppuretextthisformtypesavetocancontainwiththepackinontheWEBamachineof,youcanthenusetermwhytextthisplaitmachinebeatopenit,ASPdistanceprefacethepuretextthis,HTMLmarkrecordswithandfeetthislifemakes.Youneedonly.TheaspdistanceprefaceputstheinWEBamachineintendseyesrecordthebottom(thateyesrecordtomusthavenecessarilycanapowerlimit),canvisitedtoasktheASPdistanceprefaceovertheWWWsquaretypewiththe.ToinglearnthegoodASPdistanceprefaceestablishtoaccount,necessarilymusttheplaitthatholdthefeetthiswrite,thatinvestigateunexpectedlytheisafeetthisItssolidfeetthisisfromanisfeetthislifereamasetoftherowof,suchastogetherathedistanceprefaceofthesort,feetthiscantogiveaworthachangesthedeal,canmaketheWEBamachinehairsendavaluewiththelifeamachine,canalsowithwillanisrowlifethereamsettlestherighteousnessanoverdistance.Toweavetowritethefeetthis,youmustwanttobefamiliarnecessarilyalltolittleafeetthislanguagespeech,suchasVBScript.FeetthislanguagespeechisakindoflyinginHTMLwith,suchasJAVA,VisualBasic,C,++etc.weavesthedistancelanguagespeechalanguageforofakindoflywithtalks,doingtotakecareofitevenconnectthenearempress,butitdoesnothavetheplaitdistancelanguagethespeechreplythelanguagemethodofthemiscellaneousandstricttoisthenwithrules.Suchastheex-afeetforsayingfirstofASPliftingtoprovidethiscarriesawreathcanholdtogrowfeetthislanguagespeechmore,suchas:JScript,REXX,PERL...etc.etc.,thishavenotheestablishestheASPdistanceprefacetoaccountliftthehairthatprovidedthewideflicksremainingground.TheASPmakesnowthewidelybigWEBestablishestoaccountnotnecessarilyatistodeniesforamachineholdbutaheart,solidontheoccasionoftopcalculateyouattogethera.Asptextafeetforinsidemakingusingnottogetherthislanguagetalks,youhavenomustforthisloadof,youalsoneedonlyatbecauseofhaveonslicingfortowillcarryintoinamachineafor,amachinehavetoarrivingistheknotfruitofadistanceprefaceline,.Aspinsideafeetforclearlymakingusingnottogetherthislanguagespeechisnamelycan.Bottomisatypeofattogethera.Asptextason:<HTML><BODY><TABLE><%CallCallme%></TABLE><%CallViewDate%></BODY></HTML><SCRIPTLANGUAGE=VBScriptRUNAT=Server>SubCallmeResponse.Write"<TR><TD>Call</TD><TD>Me</TD></TR>"EndSub</SCRIPT><SCRIPTLANGUAGE=JScriptRUNAT=Server>functionViewDate(){varxx=newDate()Response.Write(x.toString())}</SCRIPT>ThisiseachonetoconnecttheinthistextatruepositiveASPdistancepreface,100010000donotwantthequilt"<%%>"signnumbermakethedraws,thisitssolidisanASPtomarktoallowtosettletheboundarysign,butthe"<SCRIPT></SCRIPT>"isfeetthislanguagespeech.ASPnottalkinfeetthislanguagetogether,ithavefromtheFwiththelanguagemethodthatsettle,anASPforhavinglifereamallandnecessarilymustthepackcontainin<%with%>of,suchas:<%test="English"%>,theASPlosestheaknotfruittooveraformforcontainingin<%with%>reachtypemachine,suchas:<%=test%>istogiveworththehairofEnglishthethatchangethedealtesttosendtoamachineinside,butwhenchangethevalueofthedealtestastheMathematics,thennextdistancepreface:Thisweekendwewilltest<%=test%>.Thenshowtoshowinamachinefor:ThisweekendwewilltestMathematics.LearntheASPgoodofsquaremethodoverinclosefrommovethehandplaitwrite,formaketheeachholdtheASPdistanceprefacetoestablishtoaccounttheskillinthemostshortlyhour,thistextwilladopttotakethesolidacentmethod,overanisthesolidexampleoftherowleteachonelearntheASPinsolid.SetupanASPpage,youaforneedingistobeatstoopenatextthisplaitmachine,suchas:Notepad,howeveropentostarttomovewithmebehindthehandplaitwritethefirstASPdistancepreface.BottomIwillsetupanASPforfrommovingmeasuringhourincombiningfirstrootaccordingtonottogetherhourthesegmentmovestheshowstoshownottogetherthepageinsidepermitdistancepreface,pleaseshearthethennextonbehalfcodetotextthisplaitmachineinsidethatsticktoyou,combinetosavefortest1.asp:<html><body><FONTCOLOR="Green"><%IfTime<#12:00:00#AndTime>=#00:00:00#Then%>Lastearlygood,aspiritdonotdependonnow!<%ElseIfTime<#19:00:00#AndTime>=#12:00:00#Then%>Bottomthenoonisgood!<%Else%>hello!NowlateyouhaveanddidnotgototheIRCchatsforday!<%EndIf%></body></html>Protecttosavethetest1.asptheinWEBamachineintendeyesrecord(suchas:Aspsamp/)bottom,combineinthemachineofthesquaretypeofusingtheenters,suchas:://yourcomputername/aspsamp/test1.asp,youwillbenewhairstrangelynow,youofthepageisreallylivetorisestocome.Althoughhowever,thisonlyisanotoftensinglesolidexampleinChien,butandthiscanbeoverandallandcanisoverovertheJavaScriptwiththe,isanotdifficulthairtomakewanttocomparewiththeASPJavaScriptChien'snow,fastgetsoonmany,butandcarriestousethismethod,youareoverandallcanwithlightbutraiseahourofnetpageatnottogetheranexhibitionthatmakesyoushowingeasilynottogetherofbreezespace.This"Time"intheexampleissolidontheoccasionofthetopisaVBScriptinsidetoplaceofshowtoshowisafeetforoflettercounting,frominisrecognizingthislanguagespeechfortobefrontisaVBScript,beingyoubecauseofthistoadjusttousethatletterinASPlifereamseveral,feetthisleadswouldfrommoveitsturntochangebeforebeingofishour.Connectthebottomtomewilladdthetest1.asptoaddsomecolor,addtoaddthe"bgcolor="the<%=thebgcthe%>"changenamelyfor<thebodybgcolorthe="<%=bgc%>">in<body>markknew,combinetomarkatthe<body>beforerecordingaddstoaddsuchasthenextlanguagesentence:<%IfTime<#12:00:00#AndTime>=#00:00:00#Thenbgc="silver"ElseIfTime<#19:00:00#AndTime>=#12:00:00#Thenbgc="navy"Elsebgc="red"EndIf%>Comesuchasthis,betouseahourforatnottogetherapageforvisittingaskingyou,hewillseenottogetherofpagecarryviewcoloronpage'sback.Icanthenthematterfeelingthatdostillhasverymuch,ifyouwanttoknowanasurnameofdoorathisdistancefor,combiningfacingheorsheaskinggoodly,thatdescendingprefacewillcanhelpyoureachheartwish.Headfirstyouneedwanttoestablishtoplacetheforminpagesingle,shearthethennextHTMLonbehalfcodetostick"<%IfTime<#12:00:00#AndTime>=#00:00:00#Then%>"itsempress:The歡facesthelightfacesmymainpage,pleasingfilltowritethendownletter:<FORMMETHOD="POST"ACTION="test1.asp"><P>FirstName:<INPUTNAME="fname"SIZE="48"><P>LastName:<INPUTNAME="lname"SIZE="48"><P>Title:<INPUTNAME="title"TYPE=RADIOVALUE="mr">Mr.<INPUTNAME="title"TYPE=RADIOVALUE="ms">Ms.<P><INPUTTYPE=SUBMIT><INPUTTYPE=RESET></FORM>HoweverempressatthenlastHTMLonbehalfcodeempressaddstoaddsuchasthenextASPlifeream:<%title=request.form("title")iftitle="mr"then%>ThefacesyourMr.<%=request.form("fname")%>.<%elseiftitle="ms"then%>ThefacesyourMs.<%=request.form("fname")%>.<%else%><B><fontcolor=blue>thefacesyou<%=request.form("fname")&""&request.form("lname")%>.</font></B><%endif%>Protecttosavethetextatest1.asp,combinetoenterawiththesquaretypeininmachine,suchasthishouroffruitofishourawordsforin0:00:00withnoon12:00:00it,themachineofwillshowtoshowsuchasthenextpainting:ThisitssolidisaforinInternetwiththeIntranetoftenseeingcan,thenwhenusedoorisafterthemachineofcarryfilltowritetheoverformsingle,overadjusttousewithathenetpassdistanceprefacewillusethenumberaccordingtospreadtosendtoamachine,beenteredbyamachineareasonempressreturntheknotfruitagaintoreturntoamachine.OvergotoforsolidtheofthiskindcanmustweavetowriteaforonlyintheoutsideCGIdistanceprefaceoftheHTML,combiningoverHTMLenteringlineadjustingusing,openningCGIplaitwritingreplyingmiscellaneousetc.lackingorderingdoingnottalk,CGIaneffectratenecessarilytoalsoisanowbigaskinga
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 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. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年度個人房屋買賣合同模板(含貸款條款)4篇
- 2025年度個人借款三方擔保合同糾紛解決條款4篇
- 年度腎上腺皮質(zhì)激素類藥產(chǎn)業(yè)分析報告
- 2025年個人購房合同(含房屋保險服務(wù))
- 2025年度高速公路隧道照明安裝與維護合同模板3篇
- 二零二五年度高品質(zhì)抹灰施工班組勞務(wù)分包協(xié)議3篇
- 2025年度個人入股合作協(xié)議書范本:航空航天股權(quán)投資協(xié)議3篇
- 2025年度有機茶園種植與產(chǎn)品銷售合作協(xié)議范本4篇
- 網(wǎng)絡(luò)教育課程設(shè)計
- 2024版新房購買中介合作協(xié)議
- 2024年二級建造師繼續(xù)教育題庫及答案(500題)
- 《中華民族多元一體格局》
- 2023年四川省綿陽市中考數(shù)學(xué)試卷
- 選煤廠安全知識培訓(xùn)課件
- 項目前期選址分析報告
- 急性肺栓塞搶救流程
- 《形象價值百萬》課件
- 紅色文化教育國內(nèi)外研究現(xiàn)狀范文十
- 中醫(yī)基礎(chǔ)理論-肝
- 小學(xué)外來人員出入校門登記表
- 《土地利用規(guī)劃學(xué)》完整課件
評論
0/150
提交評論