Take Up With Web Technology–坏坏的网志

  • event 珊瑚虫作者被抓 服务器被扣事件录像

    香水坏坏 发表于2007-9-29 [WEB20]

    Hits: 1564  Feedback: 6  Trackback  Permalink: http://www.aspstat.com/98
  • 程序员之坏坏“悲惨人生”--Why,why,why?

    香水坏坏 发表于2007-9-25 [Others]

    我在长沙却没去过凤凰,我在杭州却没去过西湖,我在成都却没去过娥眉,我在深圳却没去过香港,我在北京却没去过长城。。。。。。。。。。。。

     

     

     

    Hits: 1482  Feedback: 9  Trackback  Permalink: http://www.aspstat.com/97
  • 五种方法解决 Web2.0设计中的匹配度

    香水坏坏 发表于2007-9-22 [WEB20]

    现在大家都在讨论Web2.0 ,大家都在搞用户行为前端设计,现在注册一个ID一般只需要几秒钟,站长期望其产生高价值的UGC,形成一个只需要审核和挖掘海量信息的平台,众多的网友围绕着N多个topic ,产生一系列高度相关的content,续而产生很多comments,一切看似很完美。无需很多的人来管理网站,每天都有用户自主上传大量高质量的内容。

    (More...)
    Hits: 1574  Feedback: 2  Trackback  Permalink: http://www.aspstat.com/96
  • XML-RPC协议规范

    香水坏坏 发表于2007-9-21 [specification]

    Overview

    XML-RPC是运行在internet之上的远程过程(函数)调用协议。

    一个XML-RPC消息就是一个HTTP-POST请求。请求发送的数据主体是XML形式。
    在服务端过程被执行并且也已XML的形式返回值。

    过程的参数可以是数字,字符串,日期等等还可以是复合数据和列表结构。

    (More...)
    Hits: 3194  Feedback: 0  标签:HTTP protocol XML XML-RPC 协议  Trackback  Permalink: http://www.aspstat.com/95
  • 记录一下以前写的一个网站访问统计分析程序

    香水坏坏 发表于2007-9-21 [ASP.NET]

    大抵,是2005年初的一个.net,统计分析程序,主要通过分析IIS记录来实现统计分析。这里发哈图纪念一下(沉默)。

    部分功能如图:

    (More...)
    Hits: 1646  Feedback: 4  标签:IIS  Trackback  Permalink: http://www.aspstat.com/94
  • 整理 HTTP协议:服务器返回状态码

    香水坏坏 发表于2007-9-21 [specification]

    Informational
    ================================
    100 Continue
    指示客户端应该继续请求。回送用于通知客户端此次请求已经收到,并且没有被服务器拒绝。
    客户端应该继续发送剩下的请求数据或者请求已经完成,或者忽略回送数据。服务器必须发送
    最后的回送在请求之后。

    (More...)
    Hits: 2693  Feedback: 1  标签:HTTP protocol 协议  Trackback  Permalink: http://www.aspstat.com/93
  • 整理 HTTP协议:头定义

    香水坏坏 发表于2007-9-21 [specification]

    HTTP头定义介绍

    1 Accept 指示能够接受的返回数据的范围  request-header

    语法:
    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: */*

    (More...)
    Hits: 7539  Feedback: 8  Trackback  Permalink: http://www.aspstat.com/92
  • 感激那些半夜还在努力钻研的"Hacker"朋友

    香水坏坏 发表于2007-9-21 [HH.Weblog]

    刚才无意见查看blog日志,想不到偶小小的blog竟然也引起了某位来自222.84.139.155(广西自治区柳州市)的"hacker"朋友注意。

    (More...)
    Hits: 1578  Feedback: 2  标签:hacker sql injection  Trackback  Permalink: http://www.aspstat.com/91
  • VS2008 支持在验证HTML,CSS,JScript问题报告时的错误级别改为警告级别

    香水坏坏 发表于2007-9-20 [ASP.NET]

    come from:http://weblogs.asp.net/scottgu/archive/2007/09/18/vs-2008-support-to-treat-html-css-and-jscript-validation-issues-as-warnings-instead-of-errors.aspx

    如图:

    (More...)
    Hits: 2105  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/90
  • C# 3.0 的自动属性(Automatic Properties)

    香水坏坏 发表于2007-9-17 [ASP.NET]
    C#代码
    1. class Program   
    2. {   
    3.     static void Main(string[] args)   
    4.     {   
    5.         Test1 a = new Test1();   
    6.         //incorrectness   
    7.         //we would catch this exception    
    8.         //"The property or indexer 'ConsoleApplication1.Test1.PropertyB' cannot be used in this context because the set accessor is inaccessible"   
    9.         //when build project   
    10.         //a.PropertyB = "b";   
    11.   
    12.         //correct   
    13.         a.PropertyA = "a";   
    14.   
    15.         //string c = a.PropertyC;   
    16.     }   
    17. }   
    18.   
    19. //c# 3.0+   
    20. class Test1   
    21. {   
    22.     //common property type   
    23.     public string PropertyA { get; set; }   
    24.     //just visiable for all other classes   
    25.     public string PropertyB { get; private set; }    
    26.       
    27.     //this are not allowed   
    28.     //instead using a field like: string fieldC   
    29.     //public string PropertyC { private get;private set;}   
    30.   
    31.     //writable for child class and visiable for all classes;   
    32.     public string PropertyD { get; protected set; }   
    33.   
    34.     //justlin visiable for self child   
    35.     protected string PropertyE { get; private set; }   
    36.   
    37. }   

     

    相关文章

    .net 3.0 C# 新特性http://www.aspstat.com/68

    Hits: 1351  Feedback: 3  标签:C#  Trackback  Permalink: http://www.aspstat.com/89
FIRST12LAST

[Track]

  • family...work...production
  • heatmap...idea...recept
  • b2b...javascript...accumulate
  • ...sns...manage
  • Aspose...Analyse...elevation
  • CSCTC...hello world

项目[Project]

  • Silverlight体验
  • AspStat.IO.GifImage Gif动画压缩类
  • jBox 网页模态窗体
  • pageValidator 网页表单验证

分类[Category]

  • ASP.NET[71]rss
  • Database[2]rss
  • Javascript[45]rss
  • CSS/UI[9]rss
  • WEB20[9]rss
  • Others[21]rss
  • 火星Project[8]rss
  • silverlight[17]rss
  • specification[14]rss
  • Server Tech[2]rss
  • 项目其他[5]rss
  • 用户体验[0]rss

存档[Storage]

  • 2010年3月[2]
  • 2009年11月[1]
  • 2009年8月[1]
  • 2009年6月[3]
  • 2009年5月[4]
  • 2009年4月[2]
  • 2009年3月[1]
  • 2009年2月[7]
  • 2009年1月[7]
  • 2008年12月[1]
  • 2008年11月[4]
  • 2008年10月[3]
  • 2008年9月[5]
  • 2008年8月[30]
  • 2008年7月[8]
  • 2008年6月[6]
  • 2008年5月[3]
  • 2008年4月[2]
  • 2008年3月[6]
  • 2008年2月[6]
  • 2008年1月[4]
  • 2007年12月[1]
  • 2007年11月[5]
  • 2007年10月[13]
  • 2007年9月[16]
  • 2007年8月[38]
  • 2007年7月[23]
  • 2007年5月[1]

热门日志

  • 整理 HTTP协议:头定义
  • silverlight 示例 五子棋
  • .net发送电子邮件
  • XML-RPC协议规范
  • jQuery 1.2 发布
  • 整理 HTTP协议:服务器返回状态码
  • VS2008 支持在验证HTML,CSS,JScript问题报告时的错误级别改为警告级别
  • jQuery 1.2的新特性

最近网志

  • event 珊瑚虫作者被抓 服务器被扣事件录像
  • 程序员之坏坏“悲惨人生”--Why,why,why?
  • 五种方法解决 Web2.0设计中的匹配度
  • XML-RPC协议规范
  • 记录一下以前写的一个网站访问统计分析程序
  • 整理 HTTP协议:服务器返回状态码
  • 整理 HTTP协议:头定义
  • 感激那些半夜还在努力钻研的"Hacker"朋友

最新评论

  • 怎么看? 给个地址吧。。。或发布个源码吧。。。
  • ssssssssssssssss
  • Pingback from http://www.aspstat.com/226 IE8 CSS HACK
  • Trackback from 香水坏坏
  • 弹出div是原版的copy,对于原来div中有事件,from等取得有问题
  • Trackback from 香水坏坏
  • I find a bug with iframe minimize on 1.0.0.0 I change line 82 with this and all runs good, great plugin ty. if( !box.minimizable ){if (box.controls.find('img[title=Minimize]').length>0)box.controls.find('img[title=Minimize]').remove()};
  • 哪个人这么缺德,把他阉了...弹他的小JJ

链接[Links]

  • iCream
  • ⊙阳光囧男℡
  • 李军
  • Nick
  • .NET Framework Advanced Developm
  • ctrip ued team
  • [林子]Linzzi's blog
  • SkyDesign
  • Martin H.Normark
  • Martin Flowler
  • asp.net
  • jQuery插件大全
  • 学习MVC的好地方
  • CSS Document
  • edwards@js
  • crockford@js

在线[Last 10 Online Users]

  • 207.46.204.235
  • 218.22.21.2
  • 38.107.191.100
  • 38.107.191.102
  • 38.107.191.104
  • 38.107.191.103
  • 38.107.191.101
  • 60.251.58.95
  • 203.208.60.245
  • 218.4.159.46

订阅[Subscribe]

Subscribe

©2007 aspstat.com is licensed under a Creative Commons License.Powered By HH.Weblog 0.9