自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 ASP.NET MVC 基于表达式的动态查询

项目源码地址:https://gitee.com/zhengwei804/DynamicCustomSearch转载于:https://www.cnblogs.com/qingshang/p/Dynamic_Expression_Custom_Search.html

2018-04-14 22:16:00 210

转载 Visual Studio 使用Web Deploy发布项目

工具:Web Deploy 3.6点击下载(强烈推荐使用独立的Web Deploy 安装包安装)使用 Web Platform Installer 安装 Web Deploy(3.5,3.6都安装),(Web Platform Installer下载地址 https://www.microsoft.com/web/downloads/platform.aspx)配置:1、...

2015-12-10 14:26:00 241

转载 ASP.NET WEB API 帮助文档引用单独项目中的DTO,见面上不显示字段注释问题解决办法...

StackOverFlow上的解决办法: 问题地址转载于:https://www.cnblogs.com/qingshang/p/4906568.html

2015-10-24 12:05:00 218

转载 Linq 单表城市级联

var list = (from province in db.Areas where province.ParentId == 0 && province.IsDel == 0 join city in db.Areas on province.ID equals city.ParentId into citys ...

2015-10-16 21:52:00 172

转载 LINQ取复杂列表

class Program { public class Order { public int ID { get; set; } public string OrderNo { get; set; } } public class Or...

2015-10-16 17:42:00 72

转载 ios app 企业帐号发布,在浏览器中直接点击链接下载安装

软件环境:Xcode 6.4参考链接:1、http://zxs19861202.iteye.com/blog/19977222、http://www.cnblogs.com/abl1992/p/4717168.html流程说明:HTML页面的下载链接&...

2015-08-20 14:02:00 538

转载 c# ros

class MK { Stream connection; TcpClient con; public MK(string ip) { con = new TcpClient(); con.Connect(ip, 8728); ...

2015-08-07 17:15:00 495

转载 sql server 中隐藏掉无关数据库

先贴上我实际测试的效果方法一:ProblemI have a SQL Server instance that has hundreds of databases. Navigating the database tree in SSMS is a pain and I was wondering if there was a way to limit the list...

2015-07-28 17:45:00 914

转载 visual studio 2013 使用域名调试本地项目

一、在localhost添加需要指定的域名,如:test.domain.com二、以管理员身份启动VS,并打开项目三、修改IIS Express的配置文件(一般位于:C:\Users\当前用户\Documents\IISExpress\config目录下的applicationhost.config)找到项目所在位置(site节点下name为项目名,若不存在该项目的节点,...

2015-07-07 23:42:00 437

转载 Web Deploy自动配置

自动发布配置,需要在发布的配置文件里面添加以下一句,避免在发布时,无权限!<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <IncludeSetACLProviderO...

2015-05-21 15:11:00 191

转载 jQuery form表单序列化为JSON对象!

/*来源于博客园http://www.cnblogs.com/nixil/archive/2010/12/08/1900745.html*/function paramString2obj(serializedParams) { var obj = {}; function evalThem(str) { var attributeN...

2015-04-24 01:54:00 76

转载 CURL HELP

CURL下载在windows的系统环境变量中,将CURL的路径(curl.exe存放的路径)复制到"Path"变量的结尾Usage: curl [options...] <url>Options: (H) means HTTP/HTTPS only, (F) means FTP only--anyauth Pick "any" authentication...

2015-03-10 21:43:00 162

转载 sql server生成递归日期、连续数据

WITH Date AS ( SELECT CAST('2008-08-01' AS DATETIME) da UNION ALL SELECT da + 1 FROM Date WHERE da < ...

2014-12-03 15:33:00 202

转载 MVC项目中,如何访问Views目录下的静态文件!

<!--注意,是system.webServer节点,而非system.web--><system.webServer><handlers> <add name="JavaScriptHandler" path="*.js" verb="*" preCondition="integratedMode" type="System.We...

2014-11-10 16:42:00 277

转载 DDNS动态更新

1 /// <summary> 2 /// DnsPod DDNS工具类 3 /// </summary> 4 public class DDNSToolkit 5 { 6 private static string userName = ConfigurationMan...

2014-11-03 15:28:00 239

转载 ROS中DDNS的使用

一、通过tool fetch更新ddns,关于此命令的使用,参考 tool fetchScripts中添加脚本/tool fetch url="http://www.51kwl.com/?p=192.168.199.10" mode=http user=192.168.199.10 password=ddns51kwl.com为自己注册域名p=192.168.199.10为自...

2014-09-04 14:45:00 483

转载 佛祖保佑 永无bug

/* _ooOoo_ o8888888o 88" . "88 (| -_- |) O\ = /O ____/`...

2014-08-21 11:41:00 74

转载 asp.net webservice返回json问题

使用jQuery $.ajax方法请求webservice一、方法返回值为string,将json格式的字符串返回设置contentType为"application/json;charset=utf-8"(若不设置contentType,返回的默认是xml标记的字符串,不能按照正常解析json的方式来解析)前台调用返回数据:success:function(data...

2013-09-23 13:05:00 159

转载 asp.net使用Get请求webservice

先在Web.config中的System.Web节点下添加如下代码,使其支持Get请求:<webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols>  再在需...

2013-08-13 23:21:00 165

转载 easyui与ueditor合用问题

在联合使用easyui与ueditor的时候,当在dialog中通过href打开一个页面,页面中含有ueditor,如果使用dialog的close方法,可以理解为只是将dialog给隐藏了,再将点击打开的时候,ueditor不会重新初始化,可以在关闭的时候,使用dialog的destroy方法,可通过api查看到dialog是继承了window,而window是继承的panel同时...

2013-07-05 22:32:00 137

空空如也

空空如也

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

TA关注的人

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