Take Up With Web Technology–坏坏的网志

  • 沉默很久

    香水坏坏 发表于2009-11-10 [ASP.NET]

    沉默了很久没发言了。。。

    。。。。一直鼓弄 一直没坚持做出个具体的东西来

     

    算是一种积累所以打算在将来的不久发布偶的第一个坚持下来的产品。。。。

    废话不多说了,感兴趣的朋友可以先提前体验一下。。。。

    体验地址:http://livedemo.linxp.com/cms/manageportal/login.aspx

    用户名 密码 admin admin

    期待你的宝贵意见 请回帖 帮偶找找BUG也行 谢谢啦。。。

    Hits: 230  Feedback: 6  Trackback  Permalink: http://www.aspstat.com/224
  • .net 读取项目AssemblyInfo.cs属性值

    香水坏坏 发表于2009-6-12 [ASP.NET]

    We write all those code repetitively for dynamic assembly loading and checking to verify few properties on assemblies. It would be a great stop to write all such things in the assemblyinfo.cs (because it needs to completely describe the assembly that it is intended to serve for) You can define your About form of the application entirely using the AssemblyInfo.cs

     

    (More...)
    Hits: 705  Feedback: 0  标签:Assembly  Trackback  Permalink: http://www.aspstat.com/221
  • asp.net服务器安全之磁盘访问权限设置

    香水坏坏 发表于2009-5-26 [ASP.NET]
    asp.net服务器安全之磁盘访问权限设置 (More...)
    Hits: 729  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/219
  • 发布我的一个开源项目 AspStat.IO.GifImage

    香水坏坏 发表于2009-3-3 [ASP.NET]

    实现生成GIF动画缩略图

    Hits: 1066  Feedback: 1  Trackback  Permalink: http://www.aspstat.com/213
  • Architectural of IE

    香水坏坏 发表于2009-2-12 [ASP.NET]

    IE uses ActiveX Controls AND active document interfaces to connect components

     

    (More...)
    Hits: 522  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/210
  • .net BMP文件的 ColorDepth 问题

    香水坏坏 发表于2009-2-10 [ASP.NET]

    I am almost cerain this is a bug in the .NET bitmap Codec, that you cannot change the color Depth... It always saves in its native format for Bitmap.
     
    However, if you convert the image to a TIFF first, then it works.
     

    Image imgTIFF = Image.FromStream(s);

    ImageCodecInfo ici = GetEncoderInfo("TIFF");

    EncoderParameter ep = new EncoderParameter(Encoder.ColorDepth,24L);

    EncoderParameters eps = new EncoderParameters(1);

    eps.Param[0]= ep;

    imgTIFF.Save(@"c:\test.tiff",ici,eps);

    Image imgBMP = Image.FromFile(@"c:\test.tiff");

    imgBMP.Save(@"c:\test.bmp");

     
     
     
     
    (for reference:)

    private ImageCodecInfo GetEncoderInfo(string mimeType)

    {

    ImageCodecInfo[] encs = ImageCodecInfo.GetImageEncoders();

    for (int ix = 0; ix <= encs.Length; ix++)

    {

    if ( encs[ix].CodecName.IndexOf(mimeType) != -1)

    {

    return encs[ix];

    }

    }

    return null;

    }

    Hits: 660  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/209
  • MaxtoCode对.Net程序加密的原理及解密探讨一

    香水坏坏 发表于2009-2-2 [ASP.NET]

    原文:http://www.cnblogs.com/rick/archive/2006/07/17/453150.html

    这里研究的对象是 MaxtoCode 3.1试用版.这里只探讨程序代码的加密.

    (More...)
    Hits: 515  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/206
  • 汇编代码分析

    香水坏坏 发表于2009-1-12 [ASP.NET]

    int Fun(int a,int b){ a=0x1;b=0x2;return a_b;}

    int main(){Fun(0x3,Ox4);return 0;}

    主函数调用Fun()函数的汇编代码:

    (More...)
    Hits: 632  Feedback: 0  Trackback  Permalink: http://www.aspstat.com/201
  • 递归&逆递归

    香水坏坏 发表于2009-1-5 [ASP.NET]

    递归recursion:

    做某件事直到... do while

    // 缺点:递归算法解题的运行效率较低。在递归调用的过程当中系统为每一层的返回点、局部量等开辟了栈来存储。递归次数过多容易造成栈溢出等。

    int A(int i){

     //边界条件

      if( i<1 )

     //递归返回段

         return 1; 

      //递归前进段

       return i*A(i--);
    }

    写成:

    do{

     i=i*i;

     i--;
    }while( i==0);

    逆递归

    int A(int i,int value){

     //边界条件

      if( i<1)

     //递归返回段

         return value; 

      //递归前进段

       return A(i--, i*value);
    }

    Hits: 428  Feedback: 0  标签:算法  Trackback  Permalink: http://www.aspstat.com/200
  • 无变量交换值

    香水坏坏 发表于2009-1-4 [ASP.NET]

    a b  1 3

    a=a+b;   a=a^b;    10 = 1 11

    b=a-b;    b=a^b;    01 =10 11

    a=a-b;    a =a^b;  11 = 10 01

    Hits: 447  Feedback: 0  标签:算法  Trackback  Permalink: http://www.aspstat.com/199
FIRST1234567LAST

[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]

热门日志

  • 星座查询:C#版根据生日查星座
  • VS2008 NET3.5正式版发布
  • .net发送电子邮件
  • .NET Framework工具 ILasm.exe
  • .net 3.0 C# 新特性
  • asp.net sitemap
  • Response.Filter属性实现网站GZIP压缩
  • [经文收藏]深入浅出Win32多线程程序设计之基本概念

最近网志

  • 沉默很久
  • .net 读取项目AssemblyInfo.cs属性值
  • asp.net服务器安全之磁盘访问权限设置
  • 发布我的一个开源项目 AspStat.IO.GifImage
  • Architectural of IE
  • .net BMP文件的 ColorDepth 问题
  • MaxtoCode对.Net程序加密的原理及解密探讨一
  • 汇编代码分析

最新评论

  • 怎么看? 给个地址吧。。。或发布个源码吧。。。
  • 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]

  • 38.107.191.104
  • 38.107.191.103
  • 38.107.191.101
  • 60.251.58.95
  • 203.208.60.245
  • 218.4.159.46
  • 207.46.199.53
  • 67.195.111.188
  • 203.208.60.175
  • 77.88.29.248

订阅[Subscribe]

Subscribe

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