自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 Redis在MVC的存值取值

view: function Insert() { var obj = { Name:$("#name").val(), Mubiao:$("#mubiao").val(), Gufen:$("#gufen").val(), Money:$("#money").val(), Shouyi: $("#shouyi").val(), key:"num"

2020-07-09 15:39:43 211

原创 Dapper分页显示+API

2020-07-08 20:33:37 292

原创 存储过程加事务添加

creat proc Buy(@ProductNo char(14),@SkuId int,@account nvarchar(20),@buyNumber int) as begin –使用事务 begin tran declare @error int declare @orderNo char(14) declare @amount float select @orderNo=OrderNo from [order] where OrderAccount=@account –查询编号 if(@orde

2020-06-09 20:51:46 141

原创 –存储过程分页

–存储过程分页 go alter proc Page_New ( @PageIndex int, @PageSize int, @PageCount int out ) as begin declare @count int --总条数 select top(@PageSize) * from (select ROW_NUMBER() over(order by d.Id) as num,* from DayWord d join DayType dt on d.Dtid = dt.Did) as temp

2020-06-09 20:50:21 102

原创 html简单的显示和删除

2020-06-09 20:48:51 171

原创 html简单的添加

2020-06-09 20:47:58 207

原创 api控制器加导入导出的

using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using System.Data.SqlClient; using System.Data; using ClassLibrary1; using WebApplication1.Models; using System.Web.UI.WebCon

2020-06-09 20:39:18 151

原创 初级存储过程

create table DayWord ( Id int primary key identity, Dnum varchar(50), Dtid int foreign key references DayType(Did), Dtitle varchar(50), DsubName varchar(50), Dtime varchar(50), SubTime datetime, Dinfo varchar(50) ) create table DayType ( Did int primary ke

2020-06-08 14:28:02 88

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除