上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1using System; 2using System.Collections.Generic; 3using System.Text; 4using System.Timers; ... 阅读全文
posted @ 2009-03-14 16:16 melody&bobo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 本人回贴1: ----------------------------- 物理层:HUB,网线 链路层:MAC,ARP,交换机 网络层:IP,ICMP,IGMP,路由器 传输层:TCP,UDP 会话层:HTTP,SMTP,FTP,POP3 表示层:SOAP,SSL 应用层:WebService的Method ------------------------------- Socket是对网络层操作... 阅读全文
posted @ 2009-03-14 11:22 melody&bobo 阅读(1544) 评论(1) 推荐(0) 编辑
摘要: 服务端 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> public class Udpserver { public UdpClient udpClient; public Thread Udp... 阅读全文
posted @ 2009-03-13 12:29 melody&bobo 阅读(189) 评论(0) 推荐(0) 编辑
摘要: ASP.NET对请求处理的过程: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给 ASPNET_ISAPI.dll,ASPNET_ISAPI.dll会通过http管道(Http PipeLine)将请求发送给ASPNET_WP.exe进程,在ASPNET_WP.exe进程中通过HttpRuntime来处理这个请求... 阅读全文
posted @ 2009-02-07 15:19 melody&bobo 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 1.数据库用户不能用sa 新建一个用户单独操作使用的数据库 2取消 Sysobjects columns 表的select权限 3网站代码过滤 4POST GET url过滤 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->/// ... 阅读全文
posted @ 2009-01-20 13:53 melody&bobo 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 索引类型 唯一索引:唯一索引不允许两行具有相同的索引值 主键索引:为表定义一个主键将自动创建主键索引,主键索引是唯一索引的特殊类型。主键索引要求主键中的每个值是唯一的,并且不能为空 聚集索引(Clustered):表中各行的物理顺序与键值的逻辑(索引)顺序相同,每个表只能有一个 非聚集索引(Non-clustered):非聚集索引指定表的逻辑顺序。数据存储在一个位置,索引存储在另一个位置,索引中包... 阅读全文
posted @ 2009-01-07 23:16 melody&bobo 阅读(1199) 评论(0) 推荐(0) 编辑
摘要: 已经有人写了 http://www.cnblogs.com/notus/archive/2007/03/13/673222.html URLReWriter.DLL http://www.microsoft.com/china/msdn/library/webservices/asp.net/URLRewriting.mspx http://www.cnblogs.com/jzywh... 阅读全文
posted @ 2008-12-27 10:12 melody&bobo 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 目录 类与结构的实例比较 类与结构的差别 如何选择结构还是类 一.类与结构的示例比较: 结构示例: public struct Person { string Name; int height; int weight public bool overWeight() { //implement something } } 类示例: public class Test... 阅读全文
posted @ 2008-11-15 15:19 melody&bobo 阅读(200) 评论(0) 推荐(0) 编辑
摘要: asp.net与动网论坛的整合 阅读全文
posted @ 2008-09-18 17:02 melody&bobo 阅读(682) 评论(2) 推荐(0) 编辑
摘要: sql2005循环表中的记录 阅读全文
posted @ 2008-09-16 16:11 melody&bobo 阅读(476) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页