自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 linux下解压文件方式

https://www.jianshu.com/p/ca41f32420d6原文链接 转载于:https://www.cnblogs.com/6654-cui/p/9614530.html

2018-09-09 18:33:00 66

转载 后台post请求

public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; System.Net.WebClient client = new System.Net.WebClient(); client.H...

2016-06-07 09:51:00 251

转载 存储过程和事务创建

/*alter 修改*/create proc InsertOrder @OrderCode nvarchar(50), @CusId int as begin begin tran--开启事务 begin try --计算总金额 declare @totalPri decimal(8,2) ...

2016-06-02 17:25:00 137

转载 图片裁剪

裁剪图片代码示例: js代码: <link href="../content/imgareaselect-css/imgareaselect-default.css" rel="stylesheet" /> <script src="../js/jquery-1.7.1.min.js"></script> <scri...

2016-05-25 14:45:00 121

转载 注册内容客户端验证

function verity() { $("#sub").click(function () { var name = $("#name").val(); if (name == "") { alert("姓名不能为空"); ...

2016-05-23 15:55:00 121

转载 上传图片

<form action="/Manager/foodAdd1" method="post" enctype="multipart/form-data"> 图片:<input type="file" name="AdvertisingPic" value="" /><br /> <input...

2016-05-14 21:07:00 60

转载 MD5加密

public static string EncrptString(string str) { byte[] buffer = System.Text.Encoding.Default.GetBytes(str); MD5 md5 = MD5.Create(); buffer = md5....

2016-05-10 13:39:00 62

转载 iframe自动增长

<iframe width="978" align="center" height="200" id="win" name="win" onload="Javascript:SetWinHeight(this)" frameborder="0" scrolling="no" src="MyAccount"></iframe> js代码 function ...

2016-05-10 09:35:00 111

转载 抽象工厂解耦

web.config中的配置 <!--抽象工厂创建对象的所需的参数--> <appSettings> <add key="dalAssmeblyPath" value="Shop.DAL"/> <add key="nameSpace" value="Shop.DAL"/> </appSettings> ...

2016-05-10 09:26:00 101

转载 解决model first中一对多的循环引用问题

public partial class R_UserInfo_ActionInfo { public int ID { get; set; } public bool IsPass { get; set; } public int UserInfoUId { get; set; } public int ActionInfo...

2016-04-26 10:11:00 82

空空如也

空空如也

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

TA关注的人

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