仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 375|回复: 7
打印 上一主题 下一主题

[学习教程] ASP网站制作之在WAP网站上创建反应表单

[复制链接]
爱飞 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:32:37 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
当然了,现在国内CRM厂商的产品与其说是CRM,但从至少从我的角度分析上来看,充其量只是一个大型的进销存而已了,了解尚浅,不够胆详评,这里只提技术问题Foranyonepersontocreateawebsiteandthenthinkitisperfect,isridiculous.Itisimportantto
allowthevisitorsofourwebsitestocommentonwhatwehavedevelopedsothatwecanlearnfromtheend-
user,ourmistakesandnottomentiontheoveralleffectiveness.Wecreatethesefacilitiesforwebsites
sowhynotcreatethemforourWAPsites.

Afeedbackformisdevelopedbyfirstcreatingtheform,inthiscasetocapturetheend-userscomments,
andsecondtocreatetheSendMailcode,whichwillbeusedtosendthecommentsviae-mailtous.As
alwaysifyouhaveanyotherproblemswithASP/WMLthenyoucane-mailmeatmichael_wright@lineone.net.
Alsoifyouareacompanysupervisor,managerordirectorIamalwayslookingforwork,whetheritbe
workingremotelyoron-location.Pleasefeelfreetoe-mailthesameaddress.

Firstwecreatethefeedbackformitself.Pleaseremembertochangetheredcapitalletterswithinthe
code.

<%Response.ContentType="text/vnd.wap.wml"%><?xmlversion="1.0"?>

<!DOCTYPEwmlPUBLIC"-//WAPFORUM//DTDWML1.1//EN""http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<!--THISISTHEFIRSTCARDINTHEDECK-->

<cardid="mainCard">

<palign="left"><small><b>YourFeedback</b></small></p>

<palign="left">Pleaseenteryouremailaddress<inputtype="text"name="txtFrom"format="*M"/>

Pleaseenteryourfeedback<inputtype="text"name="txtMessage"format="*M"/></p>

<dotype="accept"label="Submit!"><gohref="email.asp"method="post"><postfieldname="txtFrom"
value="$txtFrom"/><postfieldname="txtMessage"value="$txtMessage"/></go></do>

<palign="left"><small><ahref="LOCATIONOFYOURMAINWAPPAGE">Back</a></small></p>

</card>

</wml>

Nowsavethatcodeasafilecalledfeedback.asp.ThenwemustcreatetheSendMailcode.ThisSendMail
codecanonlybeusedifyouhavetheASPMailcomponentinstalledonyourwebserver.Itispossibleto
simplychangetheASPcodeinconjunctionwithyourowncomponente.g.CDONTS.

<%Response.ContentType="text/vnd.wap.wml"%><?xmlversion="1.0"?>

<!DOCTYPEwmlPUBLIC"-//WAPFORUM//DTDWML1.1//EN""http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<cardid="mainCard"title="SendFeedback">

<p><small><b>YourFeedback</b></small></p>

<%

sstrToName="YOURNAME"

sstrToAddr="YOUREMAILADDRESS"

SetMailer=CreateObject("SMTPsvg.Mailer")

Mailer.RemoteHost="SMTPMAILSERVER"

Mailer.FromAddress=Request.Form("txtFrom")

Mailer.AddRecipientsstrToName,sstrToaddr

Mailer.Subject="SUBJECTOFFEEDBACKEMAIL"

Mailer.BodyText=Request.Form("txtMessage")

IfMailer.SendMailThen

Response.Write"<p><small>Mailhasbeensent...</small></p>"

else

Response.Write"<p><small>Mailsendfailure.Errorwas"&Mailer.Response&"</small></p>"

endif

%>

<palign="left"><small><ahref="LOCATIONOFYOURMAINWAPPAGE">BacktoMenu</a></small></p>

</card>

</wml>

Nowsavethatcodeasafilecalledemail.aspandyouarereadytotestit.Ihopeyoufoundthisarticle
helpful.OneofthemainproblemsIhadwhencreatingthiscodewasthewayinwhichtheWAPinputis
recognisedbytheASPcodei.e.YoumusteitheruseRequest.Form("txtFrom")orRequest.QueryString
("txtFrom")andnotjustRequest("txtForm").
对用户来说可预见费用、节约费用,可以做到花少钱办大事。由于省去了购买软件和硬件等的前期费用,用户可以租用较高级的应用软件。ASP的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。
海妖 该用户已被删除
沙发
发表于 2015-1-19 16:22:45 | 只看该作者
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
因胸联盟 该用户已被删除
板凳
发表于 2015-1-25 21:06:20 | 只看该作者
ASP(ActiveServerPages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。
爱飞 该用户已被删除
地板
 楼主| 发表于 2015-2-9 12:04:26 | 只看该作者
ASP(ActiveServerPages)是Microsfot公司1996年11月推出的WEB应用程序开发技术,它既不是一种程序语言,也不是一种开发工具,而是一种技术框架,不须使用微软的产品就能编写它的代码,能产生和执行动态、交互式、高效率的站占服务器的应用程序。
飘飘悠悠 该用户已被删除
5#
发表于 2015-2-27 06:08:47 | 只看该作者
你可以通过继承已有的对象最大限度保护你以前的投资。并且C#和C++、Java一样提供了完善的调试/纠错体系。
透明 该用户已被删除
6#
发表于 2015-3-8 22:46:21 | 只看该作者
那么,ASP.Net有哪些改进呢?
山那边是海 该用户已被删除
7#
发表于 2015-3-16 16:30:48 | 只看该作者
代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
蒙在股里 该用户已被删除
8#
发表于 2015-3-22 23:43:03 | 只看该作者
代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-24 04:00

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表