上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
  2016年1月19日
摘要: WEB开发基础 1IIS原理 IIS的本质其实就是一个sorket的服务器,浏览器就是一个sorket的客户端,浏览器发送请求信息给IIS,IIS返回信息给浏览器显示,就这么简单。 1http.sys,这个是上个IIS6里的一个模块,主要作用是用来接受浏览器发送过来的请求。用要用一个队列来管理发送过 阅读全文
posted @ 2016-01-19 21:12 wolf12 阅读(552) 评论(0) 推荐(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 阅读(2261) 评论(0) 推荐(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 阅读(268) 评论(0) 推荐(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 阅读(136) 评论(0) 推荐(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 阅读(425) 评论(0) 推荐(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 阅读(210) 评论(0) 推荐(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 阅读(137) 评论(0) 推荐(0) 编辑
  2015年6月30日
摘要: 服务器 [ServiceContract(Namespace="http://www.artech.com/", CallbackContract = typeof(ICallback))] 服务接口加入CallbackContract //添加回调接口,用户客户端回调的实现,客户端代理会自动生成这 阅读全文
posted @ 2015-06-30 11:32 wolf12 阅读(150) 评论(0) 推荐(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 阅读(849) 评论(0) 推荐(0) 编辑
  2015年6月2日
摘要: private void EnumVisual(Visual myVisual) { for (int i = 0; i < VisualTreeHelper.GetChildrenCount(myVisual); i++) { Visual childVisual = (Visual)Visual 阅读全文
posted @ 2015-06-02 17:01 wolf12 阅读(771) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页