仓酷云

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

[学习教程] ASP教程之暗示代码与逻辑代码分别

[复制链接]
因胸联盟 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 23:15:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

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

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

x
想法是和程序员的想法不一样的.至于为什么.大家去想一想.跟心理学有关的代码分别<%@PageInherits="MyCodeBehind"Src="c2.vb"%>

Thereisanicesectioninthequickstartdocsonthistopicalso.Clickheretoreaduponit!

Hereisthecode

Thisexampleusesthefollowing
MS-SQLServer7.0database
StoredProcedure
Component1a.aspx(HTMLFile)
c2.vb
Component1a.aspx(ThePagethatistheUI)
<%@PageInherits="MyCodeBehind"Src="c2.vb"Debug="True"trace="True"%>

<scriptlanguage="VB"runat="server">

SubPage_Load(SenderAsObject,EAsEventArgs)

response.write("SMILE!!!Ilovelearningnewthingseveryday")

EndSub
</script>


<html>
<head>
<title>ComponentPage1</title>
</head>
<body>
<tableborder=0cellpadding=3cellspacing=3>
<trbgcolor="#CCCCCC">
<td>
<fontface="Arial,Helv"size="-1">
Pleasefilloutthisformtocreateanewuserprofileforyour
CompanysComponent.
<br>
Oncethisinformationisgatheredyouwillnotneedtoenteritagainandyouwillbeabletoupdateanytime.
<p>
Usethebuttonatthebottomofthispagetocontinuewhenyouarefinished.
<br>
</font>
</td>
</tr>
</table>

<fontsize="+1"><b><fontcolor="#ff0000">*=RequiredFields</b><br>

<formmethod="Post"name="form1"runat="server">
<table><tr>
<tdalign=right>
<asp:Labelid="Label1"Text="CompanyName"Font-Name="Verdana"Font-Size="10pt"Width="200px"BorderStyle="solid"BorderColor="#cccccc"runat="server"/>
</td>
<td>
<asp:TextBoxid="CompanyName"size="30"runat="server"/>
<asp:RequiredFieldValidatorControlToValidate="CompanyName"Display="Dynamic"errormessage="Youmustenteryourname!"runat=server/>
</td>
</tr>
<tr>
<tdalign=right>
<asp:Labelid="Label2"Text="CompanyURL"Font-Name="Verdana"Font-Size="10pt"Width="200px"BorderStyle="solid"BorderColor="#cccccc"runat="server"/>
</td>
<td>
<asp:TextBoxid="CompanyURL"size="30"runat="server"/>
</td>
</tr>

</font>
<tr>
<tdalign=right>
<asp:Labelid="Label3"Text="ContactEmail"Font-Name="Verdana"Font-Size="10pt"Width="200px"BorderStyle="solid"BorderColor="#cccccc"runat="server"/>
</td>
<td>
<asp:TextBoxid="EmailAddress"size="30"runat="server"maintainstate="false"/>
<asp:RegularExpressionValidatorControlToValidate="EmailAddress"ValidationExpression="[w-]+@[w-]+.(com|net|org|edu|mil)"Display="Dynamic"Font-Name="verdana"Font-Size="9pt"ErrorMessage="Mustuseavalidemailaddress."runat="server"></asp:RegularExpressionValidator>
<asp:RequiredFieldValidatorControlToValidate="EmailAddress"Display="dynamic"Font-Name="verdana"Font-Size="9pt"ErrorMessage="Emailmustnotbeleftblank."runat=server></asp:RequiredFieldValidator></td>
</tr>
</table>

<tableborder=0bgcolor="#CCCCCC"cellpadding=3cellspacing=3width="490">
<tr>
<tdwidth="100%"colspan="2">
<asp:Buttonid="Button1"Text="CreateProfile"OnClick="Button1_Click"Runat="server"/>
</td>
</tr>
</table>
</form>

</body>
</html>




c2.vbFile(ThisFileContainsthebusinesslogicthatisinheritedjustlikeacompiledDLL
OptionStrictOff

ImportsSystem
ImportsSystem.DateTime
ImportsSystem.Globalization
ImportsSystem.Data
ImportsSystem.Data.SQL
ImportsSystem.Web.UI
Imp</p>由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;
灵魂腐蚀 该用户已被删除
沙发
发表于 2015-1-20 08:45:08 | 只看该作者
完全不知道到底自己学的是什么。最后,除了教程里面说的几个例子,还是什么都不会。
若天明 该用户已被删除
板凳
发表于 2015-1-29 06:16:30 | 只看该作者
不能只是将它停留在纸上谈兵的程度上。
谁可相欹 该用户已被删除
地板
发表于 2015-1-29 15:16:07 | 只看该作者
代码的可重用性差:由于是面向结构的编程方式,并且混合html,所以可能页面原型修改一点,整个程序都需要修改,更别提代码重用了。
第二个灵魂 该用户已被删除
5#
发表于 2015-1-30 23:21:22 | 只看该作者
我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。
莫相离 该用户已被删除
6#
发表于 2015-2-6 16:46:04 | 只看该作者
从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了
冷月葬花魂 该用户已被删除
7#
发表于 2015-2-17 09:44:09 | 只看该作者
先学习用frontpage熟悉html编辑然后学习asp和vbscript建议买书进行系统学习
山那边是海 该用户已被删除
8#
发表于 2015-3-5 19:02:56 | 只看该作者
学习是为了用的,是为了让你的程序产生价值,把握住这个原则会比较轻松点。除此之外,课外时间一定要多参加一些社会实践活动,来锻炼自己的能力。
小女巫 该用户已被删除
9#
发表于 2015-3-12 11:31:15 | 只看该作者
从事这个行业,那么你可以学ASP语言,简单快速上手,熟练dreamweav排版,写asp代码,熟练photoshop处理图片,打好基础就行了
精灵巫婆 该用户已被删除
10#
发表于 2015-3-19 21:27:53 | 只看该作者
我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标.
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-17 02:27

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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