C# Source 1 <%@ Page Language=”C#”%> VB Source 学习C# Source Intro2_cs.aspx 与VB Source Intro2_vb.aspx 的不同后,发现C#的代码有些难度.特别是两个循环上有很大区别,
Intro2_cs.aspx
2
3<html>
4 <head>
5 <link rel=”stylesheet”href=”intro.css”>
6 </head>
7
8 <body>
9
10 <center>
11
12 <form action=”intro2_cs.aspx” method=”post”>
13
14 <h3> Name: <input id=”Name” type=text>
15
16 Category: <select id=”Category” size=1>
17 <option>psychology</option>
18 <option>business</option>
19 <option>popular_comp</option>
20 </select>
21
22 </h3>
23
24 <input type=submit value=”Lookup”>
25
26 <p>
27
28 <% for (int i=0; i <8; i++) { %>
29 <font size=”<%=i%>”> Welcome to ASP.NET </font> <br>
30 <% }%>
31
32 </form>
33
34 </center>
35
36 </body>
37</html>
38
Intro2_vb.aspx
1 <%@ Page Language=”VB” %>
2<html>
3 <head>
4 <link rel=”stylesheet”href=”intro.css”>
5 </head>
6
7 <body>
8
9 <center>
10
11 <form action=”intro2_vb.aspx” method=”post”>
12
13 <h3> Name: <input id=”Name” type=text>
14
15 Category: <select id=”Category” size=1>
16 <option>psychology</option>
17 <option>business</option>
18 <option>popular_comp</option>
19 </select>
20
21 </h3>
22
23 <input type=submit value=”Lookup”>
24
25 <p>
26
27 <% Dim I As Integer
28 For I = 0 to 7 %>
29 <font size=”<%=I%>”> Welcome to ASP.NET </font> <br>
30 <% Next %>
31
32 </form>
33
34 </center>
35
36 </body>
37</html>
38
39
c#
1<% for (int i=0; i <8; i++) { %>
2 <font size=”<%=i%>”> Welcome to ASP.NET </font> <br>
3 <% }%>
4
VB
1 <% Dim I As Integer
2 For I = 0 to 7 %>
3 <font size=”<%=I%>”> Welcome to ASP.NET </font> <br>
4 <% Next %>
5
VB还是很直观,一直在学VB所以感觉很好理解.C#反而像是C语言.
c# source 与vb source 的不同_c#应用
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » c# source 与vb source 的不同_c#应用
相关推荐
-      利用c#远程存取access数据库_c#应用
-      c# 3.0新特性系列:隐含类型var_c#教程
-      c#动态生成树型结构的web程序设计_c#应用
-      论c#变得越来越臃肿是不可避免的_c#应用
-      用c#监控并显示cpu状态信息_c#应用
-      c#中实现vb中的createobject方法_c#应用
-      photoshop给花瓶打造彩绘效果_photoshop教程
-      使用c#创建sql server的存储过程_c#应用