-
event 珊瑚虫作者被抓 服务器被扣事件录像
香水坏坏 发表于2007-9-29 [WEB20] -
程序员之坏坏“悲惨人生”--Why,why,why?
香水坏坏 发表于2007-9-25 [Others]我在长沙却没去过凤凰,我在杭州却没去过西湖,我在成都却没去过娥眉,我在深圳却没去过香港,我在北京却没去过长城。。。。。。。。。。。。

-
五种方法解决 Web2.0设计中的匹配度
香水坏坏 发表于2007-9-22 [WEB20]现在大家都在讨论Web2.0 ,大家都在搞用户行为前端设计,现在注册一个ID一般只需要几秒钟,站长期望其产生高价值的UGC,形成一个只需要审核和挖掘海量信息的平台,众多的网友围绕着N多个topic ,产生一系列高度相关的content,续而产生很多comments,一切看似很完美。无需很多的人来管理网站,每天都有用户自主上传大量高质量的内容。
(More...) -
XML-RPC协议规范
香水坏坏 发表于2007-9-21 [specification]Overview
XML-RPC是运行在internet之上的远程过程(函数)调用协议。
一个XML-RPC消息就是一个HTTP-POST请求。请求发送的数据主体是XML形式。
在服务端过程被执行并且也已XML的形式返回值。过程的参数可以是数字,字符串,日期等等还可以是复合数据和列表结构。
(More...) -
记录一下以前写的一个网站访问统计分析程序
香水坏坏 发表于2007-9-21 [ASP.NET] -
整理 HTTP协议:服务器返回状态码
香水坏坏 发表于2007-9-21 [specification]Informational
(More...)
================================
100 Continue
指示客户端应该继续请求。回送用于通知客户端此次请求已经收到,并且没有被服务器拒绝。
客户端应该继续发送剩下的请求数据或者请求已经完成,或者忽略回送数据。服务器必须发送
最后的回送在请求之后。 -
整理 HTTP协议:头定义
香水坏坏 发表于2007-9-21 [specification]HTTP头定义介绍
1 Accept 指示能够接受的返回数据的范围 request-header
语法:
(More...)
Accept = "Accept" ":" #( media-range[accept-params] )
media-range = ( "*/*"
| ( type "/" "*" )
| ( type "/" subtype )
) * ( ";" parameter )
accept-params = ";" "q" "=" qvalue *( accept-extension )
accept-extension = ";" token [ "=" ( token | quoted-string ) ]
例如:Accept: */* -
感激那些半夜还在努力钻研的"Hacker"朋友
香水坏坏 发表于2007-9-21 [HH.Weblog]刚才无意见查看blog日志,想不到偶小小的blog竟然也引起了某位来自222.84.139.155(广西自治区柳州市)的"hacker"朋友注意。
(More...) -
VS2008 支持在验证HTML,CSS,JScript问题报告时的错误级别改为警告级别
香水坏坏 发表于2007-9-20 [ASP.NET]如图:
(More...) -
C# 3.0 的自动属性(Automatic Properties)
香水坏坏 发表于2007-9-17 [ASP.NET]C#代码- class Program
- {
- static void Main(string[] args)
- {
- Test1 a = new Test1();
- //incorrectness
- //we would catch this exception
- //"The property or indexer 'ConsoleApplication1.Test1.PropertyB' cannot be used in this context because the set accessor is inaccessible"
- //when build project
- //a.PropertyB = "b";
- //correct
- a.PropertyA = "a";
- //string c = a.PropertyC;
- }
- }
- //c# 3.0+
- class Test1
- {
- //common property type
- public string PropertyA { get; set; }
- //just visiable for all other classes
- public string PropertyB { get; private set; }
- //this are not allowed
- //instead using a field like: string fieldC
- //public string PropertyC { private get;private set;}
- //writable for child class and visiable for all classes;
- public string PropertyD { get; protected set; }
- //justlin visiable for self child
- protected string PropertyE { get; private set; }
- }
相关文章
.net 3.0 C# 新特性http://www.aspstat.com/68

