摘要: document.oncontextmenu = function() { return false; } 阅读全文
posted @ 2013-11-12 22:13 Lukas89 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Ping p =new Ping(); PingReply pr; pr = p.Send("119.75.218.45");//百度的IP if(pr.Status != IPStatus.Success)//如果连接不成功 { Console.WriteLine("未联网"); } else { Console.WriteLine("已联网"); ... 阅读全文
posted @ 2013-11-12 22:12 Lukas89 阅读(129) 评论(0) 推荐(0) 编辑
摘要: C:\ProgramData\MicrosoftVisualStudio\10.0\TraceDebugging 阅读全文
posted @ 2013-11-12 21:58 Lukas89 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 创建Persons表和Cards表if exists(select * form sysobjects where name='Persons') drop table Persons go Create table Persons(Id int primary key identity(1,1),Name nvarchar(50),Sex bit,Age smallint); go if exists(select * form sysobjects where name='Cards') drop table Cards go create table Ca 阅读全文
posted @ 2013-11-11 13:29 Lukas89 阅读(219) 评论(0) 推荐(0) 编辑