08 2015 档案

该文被密码保护。
posted @ 2015-08-20 09:05 我_爱编程 阅读(5) 评论(0) 推荐(0)
摘要:SET NOCOUNT ON; declare @I_PCity table ( IPStart nvarchar(255), Area nvarchar(255), CityID int, IPID int ... 阅读全文
posted @ 2015-08-13 16:06 我_爱编程 阅读(508) 评论(0) 推荐(0)
摘要:byte[] bt = new byte[] { 10, 11, 33, 44, 2 }; string str=string.Join(",",bt.Select(t=>t.ToString()).ToArray()); Console.Write(st... 阅读全文
posted @ 2015-08-12 14:10 我_爱编程 阅读(1497) 评论(1) 推荐(0)
摘要:string ipFilePath = @"~/App_Data/QQWry.dat"; QQWryLocator QQWry = new QQWryLocator(Server.MapPath(ipFilePath)); IPLocation lo... 阅读全文
posted @ 2015-08-11 10:40 我_爱编程 阅读(174) 评论(0) 推荐(0)
摘要:1 SET NOCOUNT ON; 2 declare @taba table( 3 CityD int , 4 Cityame nvarchar (50) 5 ) 6 insert into @tab... 阅读全文
posted @ 2015-08-07 17:00 我_爱编程 阅读(274) 评论(0) 推荐(0)