摘要: request常用对象和方法:@属性:1.quary string,获取通过URL路径传来的数据2.Form,获取通过表单提交传输的数据 3.servervariables,获取Web服务器变量的集合 4.params,以上三种方式的集合@方法:MapPath(),将指定的虚拟路径映射到物理路径re... 阅读全文
posted @ 2015-12-18 22:47 小蚂蚁zoe 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-12-17 17:32 小蚂蚁zoe 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 第一范式(1NF)它是否有主码每一个域的名字是否唯一数据是否原子性是否有重复或冗余的域非原子性的实例:一个人的全名;一个完整的地址;一个更大数据集的部分数据;例:下面哪个数据表不符合第一范式?TitleFirstnameSurnameFull nameAddressCityMrTomSmithTom... 阅读全文
posted @ 2015-12-17 17:17 小蚂蚁zoe 阅读(182) 评论(0) 推荐(0) 编辑
摘要: C#中一个类不能继承多个父类,所以接口可以说是对继承单根性的扩展。interfaceclass student:person,Icomparable(前面是类,后面是接口)接口提供了一组规范,一个标准接口屏蔽了实现的细节(sort 方法排序时,无需关心Icomparable如何实现)方便多人协同开发... 阅读全文
posted @ 2015-12-17 15:40 小蚂蚁zoe 阅读(175) 评论(0) 推荐(0) 编辑
摘要: employee.cs:using System;using System.Collections.Generic;using System.Linq; using System.Text;namespace ConsoleApplication21{ class employee { priv... 阅读全文
posted @ 2015-12-14 23:05 小蚂蚁zoe 阅读(580) 评论(0) 推荐(0) 编辑
摘要: 1.Create 1 Project Team sites (Site1) on SharePoint(可以用普通site)2.Go to http://:8080/_admin/ServiceApplications.aspx3.Select Managed Metadata Service Ap... 阅读全文
posted @ 2015-12-10 15:51 小蚂蚁zoe 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装JDK,具体安装配置如下:http://jingyan.baidu.com/article/6dad5075d1dc40a123e36ea3.html运行成功如图:2.下载adt-bundle:http://www.cnblogs.com/tc310/p/3938353.html里面包含... 阅读全文
posted @ 2015-12-10 15:47 小蚂蚁zoe 阅读(356) 评论(0) 推荐(0) 编辑
摘要: General Application setting->configure send to connectionthen i had to choose web application"http://exhv-7649/", specify a display name,and most impo... 阅读全文
posted @ 2015-12-10 15:27 小蚂蚁zoe 阅读(298) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;using System.Data;namespace ADO1{ publi... 阅读全文
posted @ 2015-12-10 00:08 小蚂蚁zoe 阅读(298) 评论(0) 推荐(0) 编辑
摘要: -------------------------新建数据库-------------------------------createdatabasestuDBonprimary(name='stuDB_data',filename='D:\数据库\stuDB_data.mdf',size=5mb,... 阅读全文
posted @ 2015-12-09 23:54 小蚂蚁zoe 阅读(421) 评论(0) 推荐(0) 编辑