摘要:
ASP.NET - .net开发网站应用程序的技术总称 ASP WebForm MVC 是ASP.NET的两个技术方法 WebForm类似于WinForm,可视化操作 MVC类似于Java,多用代码操作 在使用VS调试HTML文件时,除非使用断点测试C#代码,不需要使用启动 可以在HTML代码上右键 阅读全文
摘要:
WebForm是微软开发的一款产品,它将用户的请求和响应都封装为控件。让开发者认为自己是在操作一个windows界面。极大地提高了开发效率。 在学习WebForm时,其知识量比WinForm要多,在实际使用过程中WebForm的使用约占80%,WinForm占大约20%。 WinForm是C/S(客 阅读全文
摘要:
一、进程 进程是一个具有独立功能的程序关于某个数据集合的一次运行活动。 它可以申请和拥有系统资源,是一个动态的概念,是一个活动的实体。 Process 类,用来操作进程。 命名空间:using System.Diagnostics; Process.Start("calc"); //打开计算器Pro 阅读全文
摘要:
文件及文件夹操作 C/S:WinForm可以操作客户端文件 Client ServerB/S:浏览器服务 Brower Server 命名空间:using system .IO; 1. File类:文件 创建:File.Create(路径);创建文件,返回FileStream FileStream 阅读全文
摘要:
color dialog :颜色选择器 fontdialog 字体样式选择控件: FolderBrowserDialog:文件夹选择控件: openFileDialog:文件选择控件※限制打开的文件后缀:Filter = 文本文件|*.txt|所有文件|*.*;一个显示一个后缀是一组,添加另一组需要 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System... 阅读全文