ASP网页编程之创建你网站的投票机制![翻译]
只要你想学,就没什么优缺点,上面那位大哥已经把网上的评论说了,但我认为想学哪个都一样,不然它就不可能在当今时代数字艺术方面存活到今天投票怎样利用ASP在本人的网站创建投票机制(一)翻译收拾
一个很不错的创建本人的投票体系的ASP程序人人细心读读,只需可以了解两头的关头手艺,就可以够在本人的网站上创建本人的投票站了。文件收拾得很仓皇,但愿人人体谅。
版权一切:
ASPPolls
version1.0
TippedCowDevelopmentandAdrenalinLabs
布局复杂先容:
ACCESS数据库计划布局:
poll表次要字段称号:PollName,PollCreator,PollQuestion,Password,Choice1,Choice2
Choice3,Choice4,Choice5,ID(主动编号),GetName
pollresults表字段:PollID,PollAnswer,Name
1.文件db.inc
<%
Application("ASP_Poll")="ASP_Poll"
cnString="DRIVER={MicrosoftAccessDriver(*.mdb)};"
cnString=cnString&"DBQ="&Server.MapPath("Events.mdb")
Application("ASPPollDSN")=cnString
%>
1.文件creat_poll1.asp
<%Title="PollGenerator"%>
<head><linkrel="STYLESHEET"type="text/css"href="style.css">
<title><%=Title%></title>
</head>
<body>
<divalign="left"><imgsrc=http://www.163design.net/a/y/"asp_poll.gif"width="231"height="90"><br>Anotherjointproductfrom<ahref="http://www.ncws.com/tippycow">TippedCowDevelopment</a>and<ahref="http://dstoflet.calweb.com">AdrenalinLabs</a>
<br><br>
</div>
<center>
<%
Response.Write"<fontface=arial>"
IfRequest("errormessage")""Then
Response.Write"<b>Error!</b>"&Request("errormessage")
Else
Response.Write"Pleasecompletetheformbelowtobegincreatingyourownpoll."
EndIf
%>
<br><br>
<tableborder=2cellspacing=0cellpadding=0><tr><td>
<formmethod="post"action="create_poll2.asp">
<tableborder=0cellspacing=0cellpadding=10width=500><tr>
<tdcolspan=2bgcolor=#000000align=centerclass="bold2">
EnterYourNameasthePollCreator
</td>
</tr><tr>
<tdbgcolor=#ffffffwidth=25%class="bold">PollCreator:</td>
<tdbgcolor=#ffffff>
<inputtype="text"name="creator"value="<%=Request("creator")%>"size=20class="input">
</td>
</tr>
</table>
</td></tr>
<tr><td>
<tableborder=0cellspacing=0cellpadding=10width=500><tr>
<tdcolspan=2bgcolor=#000000align=centerclass="bold2">
CreateaPasswordForYourPollSoThatYouCanModifyItAtA
LaterTime
</td>
</tr><tr>
<tdbgcolor=#ffffffwidth=25%class="bold">PollAdminPassword:</td>
<tdbgcolor=#ffffff>
<inputtype="password"name="password"value="<%=Request("password")%>"size=10maxlength=10maxsize=10class=input>
</td>
</tr>
</table>
</td></tr>
<tr><td>
<tableborder=0cellspacing=0cellpadding=10width=500><tr>
<tdcolspan=2bgcolor=#000000align=centerclass="bold2">
GiveYourPollaUniqueName
</td>
</tr><tr>
<tdbgcolor=#ffffffwidth=25%class="bold">PollName:</td>
<tdbgcolor=#ffffff>
<inputtype="text"name="name"value="<%=Request("name")%>"size=20class=input>
</td>
</tr>
</table>
<tableborder=0cellspacing=0cellpadding=10width=500><tr>
<tdcolspan=2bgcolor=#000000align=centerclass="bold2">
Doyouwanttohavetheuserentertheirname?
</td>
</tr><tr>
<tdbgcolor=#ffffffwidth=25%class="bold">Requireusertoentertheirname:</td>
<tdbgcolor=#ffffffclass="bold">
Yes<inputtype="radio"name="GetName"value="1"><br>
No<inputtype="radio"name="GetName"value="0"CHECKED>
</td>
</tr>
</table>
</td></tr>
<tr><td>
<tableborder=0cellspacing=0cellpadding=10width=500><tr>
<tdcolspan=3bgcolor=#000000align=centerclass="bold2">
</p>减少客户内IT专业人才缺乏带来的影响。ASP的客户员工利用浏览器进入相关的应用软件,简单易用,无需专业技术支持。 ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。 我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。 代码逻辑混乱,难于管理:由于ASP是脚本语言混合html编程,所以你很难看清代码的逻辑关系,并且随着程序的复杂性增加,使得代码的管理十分困难,甚至超出一个程序员所能达到的管理能力,从而造成出错或这样那样的问题。 弱类型造成潜在的出错可能:尽管弱数据类型的编程语言使用起来回方便一些,但相对于它所造成的出错几率是远远得不偿失的。 我认为比较好的方法是找一些比较经典的例子,每个例子比较集中一种编程思想而设计的。 我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标. 接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。 如何更好的使自己的东西看上去很不错等等。其实这些都不是问题的实质,我们可以在实践中不断提升自己,不断充实自己。
页:
[1]