|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
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的收费是根据软件的类型、客制化程度、用户数量、服务期限来定的,对客户来说这笔费用是可以预见的。方便于客户应用软件的升级。 |
|