-
SWFObject说明文档
香水坏坏 发表于2009-2-24 [Javascript]主要内容:
- 1 . 什么是SWFObject 2.0?
- 2 . 为什么你应该使用SWFObject 2.0?
- 3 . 为什么SWFObject 2.0使用JavaScript?
- 4 . 我们应该使用静态发表还是动态发表的方法?
- 5 . 怎样用SWFObject 2.0的静态发表方法来嵌入Flash内容
- 6 . 怎样用SWFObject 2.0的动态发表方法来嵌入Flash内容?
- 7 . 从SWFObject 1.5迁移到SWFObject 2.0的注意事项
- 8 . 从UFO迁移到SWFObject v2.0的注意事项
- 9 . SWFObject支持MIME类型application/xhtml+xml吗?
- 10 . 评论政策
-
GIF(GIF89a) Specification
香水坏坏 发表于2009-2-12 [specification]complete:http://www.w3.org/Graphics/GIF/spec-gif89a.txt
This document defines the Graphics Interchange Format(sm). The specification
(More...)
given here defines version 89a, which is an extension of version 87a. -
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;
}
-
javascript cookie script
香水坏坏 发表于2009-2-10 [Javascript]<SCRIPT LANGUAGE="JavaScript">
<!--/*
(More...)
name - name of the cookie
value - value of the cookie
[expires] - expiration date of the cookie
(defaults to end of current session)
[path] - path for which the cookie is valid
(defaults to path of calling document)
[domain] - domain for which the cookie is valid
(defaults to domain of calling document)
[secure] - Boolean value indicating if the cookie transmission requires
a secure transmission
* an argument defaults when it is assigned null as a placeholder
* a null placeholder is not required for trailing omitted arguments
*/ -
携程不错的企业
香水坏坏 发表于2009-2-10 [Others]由于个人原因,尽管已经离职几个月了,今天却突然接到那边的电话回访。
很普通的一个电话,但却体现了企业对员工及其在管理上的重视。
相信也只有具备这种意识的公司,才能做的更强大!
-
MaxtoCode对.Net程序加密的原理及解密探讨一
香水坏坏 发表于2009-2-2 [ASP.NET]原文:http://www.cnblogs.com/rick/archive/2006/07/17/453150.html
这里研究的对象是 MaxtoCode 3.1试用版.这里只探讨程序代码的加密.
(More...)
.gif)

