- 博客(29)
- 收藏
- 关注
原创 2020-11-17
BOOTDATEbootdate<!DOCTYPE html><html><head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> <link href="Content/bootstrap.mi...
2020-11-17 13:26:20 77
原创 2020-11-05
DBherpel 类的使用方法using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Configuration;namespace DAL{ public class DBherpel { //查询一和查询二是相同的功...
2020-11-05 16:13:42 74
原创 2020-11-05
SQLherpelusing System.Linq;using System.Configuration;using System.Data;using System.Data.SqlClient;using System;/*搞明白几个问题: 1.ADO.NET五大常用对象? 2.using 与 close的作用及区别? 3.DataReader的用法及注意事项?*//// <summary>/// ADO.NET数据库操作...
2020-11-05 15:48:39 67
原创 2020-11-05
事务完整create database salegouse salegocreate table goods(id int primary key identity(1,1),name varchar(20) not null,count int check(count>=0))create table sale(id int primary key identity(1,1),gid int references goods...
2020-11-05 14:18:35 72
原创 2020-11-04
事务的使用方法sql中create database Test3gouse Test3gocreate table bank(id int primary key identity(1,1),name varchar(20) not null,money int default(0) check(money>=0))insert into bank values('张一',90)insert into ...
2020-11-04 16:28:55 74
原创 2020-11-04
sql中使用触发器create database salegouse salegocreate table goods(id int primary key identity(1,1),name varchar(20) not null,count int check(count>=0))create table sale(id int primary key identity(1,1),gid int referenc...
2020-11-04 16:11:59 74
原创 2020-11-03
VS中查询的使用方法BLL //获取学生信息 public static DataTable stu_result(string StuId = null, string Snumber = null) { return StudentsDAL.stu_result(StuId, Snumber); }DAL//获取学生信息 pub...
2020-11-03 11:12:31 131
原创 2020-11-03
SQL中事务的使用方法create database Test3gouse Test3gocreate table bank(id int primary key identity(1,1),name varchar(20) not null,money int default(0) check(money>=0))insert into bank values('张一',90)insert into bank ...
2020-11-03 10:57:05 62
原创 2020-10-28
索引 视图create database studentgouse studentgocreate table UserInfo(stuID int primary key identity(1,1), --学生idstuName varchar(20) not null, --学生姓名sturoom int not null, --学生班级stusex varchar(20) not null, ...
2020-10-28 21:34:17 76
原创 2020-10-28
数据库的 联合查询 子查询 排序函数 create database studentgouse studentgocreate table UserInfo(stuID int primary key identity(1,1), --学生idstuName varchar(20) not null, --学生姓名sturoom int not null, --学生班级stusex varchar(2...
2020-10-28 21:28:20 70
原创 2020-10-28
用ajax实现删除web.config <compilation debug="true" targetFramework="4.5"/> <httpRuntime targetFramework="4.5"/> </system.web> <connectionStrings> <add name="DB" connectionString="server=.;database=Test;uid=sa;pwd=123;...
2020-10-28 20:33:37 113
原创 2020-10-19
图片放大html<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="js/jquery-1.3.1.js" ></script> <s...
2020-10-19 13:27:31 64
原创 2020-10-15
HTML登录<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .s1{ width: 870px; height: 360px;...
2020-10-15 19:29:00 76
原创 2020-10-14
另一种登录SQLherpelusing DAL;using Model;using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace BLL{ public class UserInfoBLL { //登录 public static UserInfo Select(string name, strin...
2020-10-14 19:21:27 57
原创 2020-10-14
登录 登录namespace BLL{ public class UserInfoBLL { //登录 public static UserInfo Select(string name, string pwd) { return UserInfoDAL.Select(name, pwd); } }} using System.Configu...
2020-10-14 08:38:43 66
原创 2020-10-12
数据库 create database Testgouse Testgocreate table UserInfo(id int primary key identity(1,1),name varchar(20) not null unique,pwd varchar(20) not null,role int default(0) check(role=0 or role=1))insert into Use...
2020-10-12 21:37:24 63
原创 2020-10-11
sqlherpelusing System.Configuration;using System.Data;using System.Data.SqlClient;namespace DAL{ public class SQLherpel { //连接字符 private static string strConn = ConfigurationManager.ConnectionStrings[""].ConnectionSt...
2020-10-11 23:05:08 94
原创 2020-10-09
三层架构三层架构(3-tier architecture) 通常意义上的三层架构就是将整个业务应用划分为:界面层(User Interface layer)、业务逻辑层(Business Logic Layer)、数据访问层(Data access layer)。区分层次的目的即为了“高内聚低耦合”的思想。在软件体系架构设计中,分层式结构是最常见,也是最重要的一种结构。微软推荐的分层式结构一般分为三层,从下至上分别为:数据访问层、业务逻辑层(又或称为领域层)、表...
2020-10-09 15:13:33 109
原创 2020-10-07
//添加购物车 $(function () { var $product = $(".pro_detail_right"); $("#cart a").click(function () { var pro_name = $product.find("h4:first").text(); var pro_size = $product.find(".pro_size s...
2020-10-07 22:32:06 124
原创 2020-10-06
修改页面皮肤$(function () { $("#skin li").click(function () { //拼接皮肤地址 var css = "styles/skin/" + $(this).attr("id") + ".css"; //修改当前页面皮肤 $("#cssfile").attr("href", css); ...
2020-10-06 20:42:42 227 1
原创 2020-09-27
经过这几天的学习,我感觉自己学的很差劲。我要加倍的学习专业课知识,越是学的不好越应该严格要求自己,基础的东西要多看多写,不然的难的学起来也不可能学会。我每次写作业都有一些自己无法解决的问题。我要虚心向同学们请教。知识这个东西是做不了假的。我们要给自己树立信心相信自己努力就会有结果。不努力什么都得不得。...
2020-09-27 21:49:32 56
原创 2020-09-25
今天我学习了jq,我以前在学校,学的基本很不好,所以我要多下功夫,不会的我今天问同学,然后把问题解决了,每次作业一写完,我就特别开心,感觉作业的压力一下子没有了,我每次都很担心作业写不完,说到底还是因为基础不好担心写不完,我要多写多练,才能熟能生巧,代码这个东西做不了假,我也只能一步一步,脚踏实地的写作业。要每天对得起自己,不能浑浑噩噩的一天一天的过去。我也要调整心态,迎接专业课带来的挑战。...
2020-09-25 14:02:57 75
原创 1111
经过这几天的学习,我渐渐的学习的热情淡了下来。有时候我想好好学习,可一写作业遇到不会的就要很长时间想办法。我上网查找每次都找不到,应该是我关键字选择的不好。我不会的地方,我的组长和组员都乐意帮助我解答问题,我也很感激他们。我在接下来的学习中要多练习,学习计算机就是要多写多练,才能学到东西,我不会的要及时问同学或者问老师。在这的四个月要学到东西要有所收获,要对得起自己。...
2020-09-23 20:14:39 118
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人