ASP.NET-入门笔记
[toc]
1. 环境
1.1 工具
安装顺序:【IIS必须安装在VS前,不然需要在VS的安装路径下找到命令行,注册到 iis】
- SQL Server2012
- IIS
- VS2012 (.NETv2.0)
1.2 .NET注册IIS【当安装顺序有误时】
微软官网:https://www.microsoft.com/en-us/download/
微软官网
打开程序-运行-cmd:输入一下命令重新注册IIS
C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i
C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i
1.3 IIS的安装及配置
一路 “下一步”
1.4 配置IIS
自己建一个应用程序池
默认文档的名字=》设为项目中要作为 首页的页面的文件名
1.5 使用VS 打开站点,进行编辑代码
2. 添加母版页
3. 添加主题、样式、Skin
一个站点可以有多个主题【但只能应用1个,主题相当于文件夹】,每个主题由 多个css文件和 skin文件构成
css文件用于调整 html 标签的样式
【一般使用类名调整样式,ID供 后端代码使用,skinID调整控件样式】
【控件要使用css样式,必须使用 CssClass=”样式名”】
3. 应用主题
删除原来的页面,添加使用 “主题” 的页面
3. 使用母版页创建页面
4. 添加站点地图
叶子节点使用自闭合标签,非叶子节点使用双标签
5. 网站Logo
打开 PS,设计Logo,保存为png格式,并放入网站的主题文件夹内
1
| <asp:Image ID="Image1" ImageURL="~/App_Themes/主题1/logo.png" runat="server" />
|
6. 数据库设置
- 准备好1个数据库
- 【管理员方式打开数据库DBMS】
设置权限
7. 网站连接数据库
- 随便在1个页面中 拖入 “数据源控件”
- 以可视化的方式连接数据库【目的是:在web.cofig中得到数据库的连接字符串】
- 删除数据源控件
- 左下角切换到设计视图
- 控件右上角的箭头
- 配置数据源
- 展开+号,可以看到连接数据库的字符串,然后单击新建连接
- sqlServer
- 服务器名,输入你的数据库所在的实例名
- 登录数据库验证方式,有你的数据库创建时的设定来决定
- 下方,选择你的数据库,测试一下连接
- 多了一个链接字符串
- 打上√,这样连接字符串就自动写进了你的web.config中
- 【下一步,就建好了连接,并同时进入数据查询界面,
为你的数据源控件准备一段查询语句】
web.config就多了一段sql的相关代码 【Data Source=数据库所在电脑的主机名】 .
1 2 3 4 5 6 7
| <connectionStrings> <add name="CompanySalesConnectionString" connectionString="Data Source=WIN-JM8KUC1NODF; Initial Catalog=CompanySales; Integrated Security=True" providerName="System.Data.SqlClient" /> </connectionStrings>
|
8. 数据库操作类
数据库访问类的编写步骤:
- 在任一页面放置 数据源控件 ,以可视化的方式创建 连接字符串
- 定义1个私有的静态 SqlConnection 属性,并 编写该属性的getter 访问器
- 编写 静态 获取数据集的方法【及其重载方法】
- 编写 静态 执行SQL语句的 方法【及其重载方法】
- 编写 静态 关闭 sqlConnection 的 方法
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
| using System; using System.Collections.Generic; using System.Web;
using System.Data; using System.Data.SqlClient; using System.Configuration;
public class DBClass { private static SqlConnection connection;
public static SqlConnection Connection { get { String connectionString = ConfigurationManager.ConnectionStrings["SchoolConnectionString"].ConnectionString;
if (connection == null || connection.State == ConnectionState.Closed) { connection = new SqlConnection(connectionString); connection.Open();
} return connection; } }
public static DataTable GetDataSet(String sql) { SqlCommand command = new SqlCommand(sql, Connection); DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(command);
da.Fill(ds); return ds.Tables[0]; }
public static DataTable GetDataSet(String sql, SqlParameter[] sqlparameter) { SqlCommand command = new SqlCommand(sql, Connection); foreach (SqlParameter parameter in sqlparameter) { command.Parameters.Add(parameter); } DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(command);
da.Fill(ds); return ds.Tables[0]; }
public static int ExecuteSql(String sql) { SqlCommand command = new SqlCommand(sql, Connection); return command.ExecuteNonQuery(); }
public static int ExecuteSql(String sql, SqlParameter[] sqlparameter) { SqlCommand command = new SqlCommand(sql, Connection); foreach (SqlParameter parameter in sqlparameter) { command.Parameters.Add(parameter); } return command.ExecuteNonQuery();
}
public static int InsertSql(string sql) {
SqlCommand sc = new SqlCommand(sql,Connection); return sc.ExecuteNonQuery();
} public static int DeleteSql(string sql) { SqlCommand sc = new SqlCommand(sql, Connection);
return sc.ExecuteNonQuery(); }
public static int UpdateSql(string sql) { SqlCommand sc = new SqlCommand(sql, Connection);
return sc.ExecuteNonQuery(); } public static bool CloseConn() { connection.Close(); return true; }
}
|
10. ADO【数据库操作的驱动】
asp.net 数据对象【类似 jdbc】
- JDBC:导入对应的jar包;使用 maven
- C#:引入 DLL;使用 nuget
10.1 ADO 与 JDBC 的对比
ADO 与 JDBC 的对比—链接
10.2 ADO 的几种对象