网络编程-ASP.NET

visual studio 2010专业版产品密钥
YCFHQ-9DWCY-DKV88-T2TMH-G7BHP

第一章 Web开发技术概念

1.1 web开发技术

web 开发技术定义
web就是一种超文本信息系统
传统的客户端/服务端(c/s)
一般由交换机组成局域网 服务器上要开发专用的服务器软件,客户机要开发专用的客户机软件
web的浏览器/服务器(b/s)
交换机路由器组成广域网 服务器要开发专用的web服务器软件 客户机一般不用开发客户机软件

1.3.1 .NET Framework 的构成

框架类库 公共语言运行库CLR

1.3.3 .NET 常用命名空间

实验

9.17

using System;

namespace 对象的生成
{

    class Vehicle
    {
        public int wheels;
        protected float weight;
        public Vehicle() {; }
        public Vehicle(int w, float g)
        {
            wheels = w;
            weight = g;
        }
        public void Show()
        {
            Console.WriteLine("the wheel of vehicle is :{0}", wheels);
            Console.WriteLine("the weight of vehicle is :{0}", weight);
        }

    };
    class Program
    {
        static void Main(string[] args)
        {
            Vehicle v1 = new Vehicle(4, 5);
            v1.Show();


        }
    }
}

上一篇 计算机组成原理
下一篇 C#-随机点名程序
ZYX

ZYX管理员

无论你遇见谁他都是你生命中该出现的 绝非偶然

本月创作热力图

2026年3月
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
加载中...
文章列表
1 Python
Python
2
vCenter报错no healthy upstream且vmware-vpxd-svcs服务无法启动
vCenter报错no healthy upstream且vmware-vpxd-svcs服务无法启动
3
kali渗透
kali渗透
4
2019下影集
2019下影集
5
使用VMware安装黑苹果
使用VMware安装黑苹果