上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 32 下一页
摘要: .NET 3.5的新特性包括: 自动属性(Auto-Implemented Properties) 隐含类型局部变量(Local Variable Type Inference) 匿名类型(Anonymous Types) 对象与集合初始化器(Object and Collection Initializers) 扩展方法(Extension Methods) Lambda表达式和Lambda表达... 阅读全文
posted @ 2009-11-16 23:11 凡的世界 阅读(296) 评论(0) 推荐(0)
摘要: 最近看到很多人的网站都被注入js,被iframe之类的。非常多。 本人曾接手过一个比较大的网站,被人家入侵了,要我收拾残局。。 1.首先我会检查一下服务器配置,重新配置一次服务器安全,可以参考 http://hi.baidu.com/zzxap/blog/item/18180000ff921516738b6564.html 2.其次,用麦咖啡自定义策略,即使网站程序有漏洞,别人也很难在文件上写入代... 阅读全文
posted @ 2009-09-01 18:23 凡的世界 阅读(373) 评论(0) 推荐(0)
摘要: 客户端请求页面 预初始化(OnPreInit) 初始化(OnInit) 完成初始化(OnInitComplete) 载入ViewState(LoadViewState) 处理回送数据(IPostBackDataHandler) Page_OnPreLoad—》Page_OnLoad 回发更改通知(RaisePostDataChangedEvent) 处理回发事件(RaisePostBa... 阅读全文
posted @ 2009-08-13 11:59 凡的世界 阅读(347) 评论(0) 推荐(0)
摘要: insert into backupStudent(已存在的表_被插) select * from student (主插)-----------------------------------------------------------------------------------------------------select * into backupStudent(目标—... 阅读全文
posted @ 2009-08-08 12:53 凡的世界 阅读(322) 评论(0) 推荐(0)
摘要: 1.4.1运行一个C语言程序的一般过程 Turbo C是一个集源程序编辑、编译、连接、运行与调试于一体、 用菜单驱动的集成软件环境。运行一个C语言程序的一般过程:(1)启动TC,进入TC集成环境。(2)编辑(或修改)源程序。(3)编译。如果编译成功,则可进行下一步操作;否则,返回(2)修改源程序,再重新编译,直至编译成功。(4)连接。如果连接成功,则可进行下一步操作;否则,根据系统的错误提示,进行... 阅读全文
posted @ 2009-08-01 14:32 凡的世界 阅读(666) 评论(0) 推荐(0)
摘要: aspnet_wp 关闭这个进程 阅读全文
posted @ 2009-07-29 11:05 凡的世界 阅读(501) 评论(0) 推荐(0)
摘要: 跳出来到哪个页面,就在哪个页面加这个代码<script>if (top.location !== self.location) {top.location=self.location;}</script> 阅读全文
posted @ 2009-07-28 17:03 凡的世界 阅读(1425) 评论(0) 推荐(0)
摘要: int[]array={1,3,4,5};object[]o=(object[])System.Collections.ArrayList.Adapter((Array)array).ToArray(typeof(object));foreach(objectooino){Console.WriteLine(oo);}【lovefootball】:int[]array={1,3,4,5};obje... 阅读全文
posted @ 2009-07-24 17:50 凡的世界 阅读(657) 评论(1) 推荐(0)
摘要: ms sql 里面的写法 Select sum_money=isnull(sum(sum_m),0) from m_chilp acc sql里面的写法 select iif(isnull(sum(sum_m)),0,sum(sum_m)) from m_chilp 阅读全文
posted @ 2009-07-20 23:01 凡的世界 阅读(576) 评论(0) 推荐(0)
摘要: 关于vss在切入项目的选项从checking in 变为 checkin now(recursive) 的问题 the solution is in Tools/Options/Source Control\EnvironentUncheck the box for "Don't show check in dialog box when checking items in"详细:http://w... 阅读全文
posted @ 2009-07-09 12:16 凡的世界 阅读(314) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 32 下一页