-
沉默很久
香水坏坏 发表于2009-11-10 [ASP.NET]沉默了很久没发言了。。。
。。。。一直鼓弄 一直没坚持做出个具体的东西来
算是一种积累所以打算在将来的不久发布偶的第一个坚持下来的产品。。。。

废话不多说了,感兴趣的朋友可以先提前体验一下。。。。
体验地址:http://livedemo.linxp.com/cms/manageportal/login.aspx
用户名 密码 admin admin
期待你的宝贵意见 请回帖 帮偶找找BUG也行 谢谢啦。。。
-
.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...) -
asp.net服务器安全之磁盘访问权限设置
香水坏坏 发表于2009-5-26 [ASP.NET]asp.net服务器安全之磁盘访问权限设置 (More...) -
发布我的一个开源项目 AspStat.IO.GifImage
香水坏坏 发表于2009-3-3 [ASP.NET]实现生成GIF动画缩略图
-
Architectural of IE
香水坏坏 发表于2009-2-12 [ASP.NET] -
.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;
}
-
MaxtoCode对.Net程序加密的原理及解密探讨一
香水坏坏 发表于2009-2-2 [ASP.NET]原文:http://www.cnblogs.com/rick/archive/2006/07/17/453150.html
这里研究的对象是 MaxtoCode 3.1试用版.这里只探讨程序代码的加密.
(More...) -
汇编代码分析
香水坏坏 发表于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...) -
递归&逆递归
香水坏坏 发表于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);
} -
无变量交换值
香水坏坏 发表于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
.gif)

