2016年1月20日
摘要:
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text;using System.Threading; namespace C
阅读全文
posted @ 2016-01-20 22:26
wolf12
阅读(1912)
推荐(0)
2016年1月19日
摘要:
WEB开发基础 1IIS原理 IIS的本质其实就是一个sorket的服务器,浏览器就是一个sorket的客户端,浏览器发送请求信息给IIS,IIS返回信息给浏览器显示,就这么简单。 1http.sys,这个是上个IIS6里的一个模块,主要作用是用来接受浏览器发送过来的请求。用要用一个队列来管理发送过
阅读全文
posted @ 2016-01-19 21:12
wolf12
阅读(564)
推荐(1)
2016年1月6日
摘要:
columnsGen = string.Join(",", modelDictionary.Keys); valueGen = modelDictionary.Values.Aggregate(valueGen, (current, i) => current + ("'" + i + "',"))
阅读全文
posted @ 2016-01-06 18:10
wolf12
阅读(2299)
推荐(0)
2015年10月18日
摘要:
<div id="div_demo"></div><script id="demo" type="text/x-jquery-tmpl"> <div style="margin-bottom:10px;"> <span>${ID}</span> <span style="margin-left:10
阅读全文
posted @ 2015-10-18 23:45
wolf12
阅读(277)
推荐(0)
2015年10月8日
摘要:
if object_ID('[proc_SelectForPager]') is not null Drop Procedure [proc_SelectForPager]GoCreate Proc proc_SelectForPager( @Sql varchar(max) , @Order va
阅读全文
posted @ 2015-10-08 11:15
wolf12
阅读(147)
推荐(0)
2015年7月31日
摘要:
/// <summary> /// add by wolf /// </summary> public static class ExtendObject { public static bool IsTargetType<T>(this object source) where T : IConv
阅读全文
posted @ 2015-07-31 08:50
wolf12
阅读(435)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;using System.Configuration;using System.
阅读全文
posted @ 2015-07-31 08:41
wolf12
阅读(215)
推荐(0)
2015年7月16日
摘要:
;WITH CETAS (SELECT *, ROW_NUMBER() OVER (PARTITION BY SearchTask_PKID ORDER BY SearchTask_PKID) RowNo FROM [SiteAnalysis].[dbo].[UrlQueue] ) DELETE C
阅读全文
posted @ 2015-07-16 16:13
wolf12
阅读(146)
推荐(0)
2015年6月30日
摘要:
服务器 [ServiceContract(Namespace="http://www.artech.com/", CallbackContract = typeof(ICallback))] 服务接口加入CallbackContract //添加回调接口,用户客户端回调的实现,客户端代理会自动生成这
阅读全文
posted @ 2015-06-30 11:32
wolf12
阅读(157)
推荐(0)
2015年6月10日
摘要:
public IList getModelList(string type, string SQL, List<string> list){ try { IList Mlist = new List<object>(); IDataReader dr = getDataReader(SQL, lis
阅读全文
posted @ 2015-06-10 09:31
wolf12
阅读(867)
推荐(0)