|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
java的设计机制:首先产生一个中间码,第二部编译为本地(机器)码。这个机制有很大的缺点。C#Source
Intro2_cs.aspx
1<%@PageLanguage="C#"%>
2
3<html>
4<head>
5<linkrel="stylesheet"href="intro.CSS">
6</head>
7
8<body>
9
10<center>
11
12<formaction="intro2_cs.aspx"method="post">
13
14<h3>Name:<inputid="Name"type=text>
15
16Category:<selectid="Category"size=1>
17<option>psychology</option>
18<option>business</option>
19<option>popular_comp</option>
20</select>
21
22</h3>
23
24<inputtype=submitvalue="Lookup">
25
26<p>
27
28<%for(inti=0;i<8;i++){%>
29<fontsize="<%=i%>">WelcometoASP.NET</font><br>
30<%}%>
31
32</form>
33
34</center>
35
36</body>
37</html>
38
VBSource
Intro2_vb.aspx
1<%@PageLanguage="VB"%>
2<html>
3<head>
4<linkrel="stylesheet"href="intro.css">
5</head>
6
7<body>
8
9<center>
10
11<formaction="intro2_vb.aspx"method="post">
12
13<h3>Name:<inputid="Name"type=text>
14
15Category:<selectid="Category"size=1>
16<option>psychology</option>
17<option>business</option>
18<option>popular_comp</option>
19</select>
20
21</h3>
22
23<inputtype=submitvalue="Lookup">
24
25<p>
26
27<%DimIAsInteger
28ForI=0to7%>
29<fontsize="<%=I%>">WelcometoASP.NET</font><br>
30<%Next%>
31
32</form>
33
34</center>
35
36</body>
37</html>
38
39
进修C#SourceIntro2_cs.aspx与VBSourceIntro2_vb.aspx的分歧后,发明C#的代码有些难度.出格是两个轮回上有很年夜区分,
c#
1<%for(inti=0;i<8;i++){%>
2<fontsize="<%=i%>">WelcometoASP.NET</font><br>
3<%}%>
4
VB
1<%DimIAsInteger
2ForI=0to7%>
3<fontsize="<%=I%>">WelcometoASP.NET</font><br>
4<%Next%>
5
VB仍是很直不雅,一向在学VB以是感到很好了解.C#反而像是C言语.
以前学了大概半年时间的asp(没有机会做大系统,最多是自己对公司系统做些调整和修改还有一些小程序)。应该说开始接触asp.net是今年元月5号的事。现在很想把公司的系统重新用.net来架构,却不知道如何下手。 |
|