ASP网页设计在win2003上用cdo取代CDONTS发邮件
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,发邮件|发邮件IntroductionCDONTSwasactuallyreplacedbyCDOalreadyinWindows2000andWindowsXP.ButtheseOperatingSystemssupportedCDONTS,andyoucoulduseCDONTS.WindowsServer2003doesnotsupportCDONTS,andweareforcedtouseCDO.ThistutorialisacrashcourseinCDO,andwewillcreateafewsimplewebformsforsendingemailswithCDOandASP.
Beforewebegin
BeforeIshowyouanycode,thereareafewthingswemustdotogetthistowork.ThefirstthingissetupawebserverCIIS6.0.YoucanstartthewizardfortheinstallationofIIS6.0fromManageYourServer(Start->Programs->AdministrativeTools->ManageYourServer).
ClickAddorremovearole.
SelectApplicationServer
YoudonotneedASP.NETnorFrontPageServerExtensionsforthistutorial
Butthatisnotenough;wealsoneedtheSMTPservertosendouremails,thoughIwillalsoshowyouhowtousearemoteserverinsteadofthelocal.So,openupAddorRemoveProgramsfromtheControlPanel.
ClickAdd/RemoveWindowsApplications
HighlightApplicationServer,andclickDetails
HighlightInternetInformationServices(IIS)andclickDetails
SelectSMTPServiceandclickOK,andfinallyNext
Wearealmostreadyforthecodewritingnow,butsinceIIS6.0islockeddownbydefault,wehavetogototheInternetInformationServicesManager(Start->Program->AdministrativeTools)andenabletheaspextension.
WhentheIISManagerhasstarted,clickonWebServiceExtensionsintheleftpane.
SelectActiveServerPages,andclickonAllow
That’sit!Wearenowreadyforthefunpart,thecoding!
Asimpletextemail
So,startyourfavoritetexteditor,andtypethis:
01|<%
02|IfRequest.Form("btnSend").Count>0Then
03|
04|SetobjMessage=CreateObject("CDO.Message")
05|objMessage.Subject=Request.Form("subject")
06|objMessage.Sender=Request.Form("From")
07|objMessage.To=Request.Form("To")
08|objMessage.TextBody=Request.Form("message")
09|objMessage.Send
10|Response.Redirect("Sent.html")
11|EndIf
12|%>
13|
14|<html>
15|<head>
16|<title>SendemailwithCDO</title>
17|</head>
18|<body>
19|<formname="sendEmail"action="EmailWithCDO.asp"method="post">
20|<table>
21|<tr>
22|<td>Subject:</td>
23|<td><inputtype="text"name="subject"/></td>
24|</tr>
25|<tr>
26|<td>From:</td>
27|<td><inputtype="text"name="from"/></td>
28|</tr>
29|<tr>
30|<td>To:</td>
31|<td><inputtype="text"name="to"/></td>
32|</tr>
33|<tr>
34|<tdvalign="top">Message:</td>
35|<td><textareaname="message"rows="6"cols="30">
36|</textarea></td>
37|</tr>
38|<tr>
39|<tdcolspan="2"><inputtype="submit"name="btnSend"
40|value="Send"/></td>
41|</</p>Windows本身的所有问题都会一成不变的也累加到了它的身上。安全性、稳定性、跨平台性都会因为与NT的捆绑而显现出来; 尽管MS自己讲C#内核中更多的象VC,但实际上我还是认为它和Java更象一些吧。首先它是面向对象的编程语言,而不是一种脚本,所以它具有面向对象编程语言的一切特性,比如封装性、继承性、多态性等等,这就解决了刚才谈到的ASP的那些弱点。 ASP也是这几种脚本语言中最简单易学的开发语言。但ASP也是这几种语言中唯一的一个不能很好支持跨平台的语言。 因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。 我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。 以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。 跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组 我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标. 没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。 ASP(ActiveServerPages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。 用户端的浏览器不需要提供任何别的支持,这样大提高了用户与服务器之间的交互的速度。
页:
[1]