Tuesday, September 16, 2008

To Get Client Ip Address

string strIpAddress;
strIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (strIpAddress == null)
{
strIpAddress = Request.ServerVariables["REMOTE_ADDR"];
}
Response.Write(strIpAddress);

Zipping files using GZipStream

http://www.geekpedia.com/tutorial190_Zipping-files-using-GZipStream.html

Compression and Decompression of Files using Visual Basic 2005

Compression_and_Decompression_of_Files_using_Visual_Basic_2005.4

The Zip, GZip, BZip2 and Tar Implementation For .NET

http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx

With Password Protected Zip File

http://www.eggheadcafe.com/tutorials/aspnet/9ce6c242-c14c-4969-9251-af95e4cf320f/zip--unzip-folders-and-f.aspx

http://social.msdn.microsoft.com/forums/en-US/csharpgeneral/thread/477302fe-22b2-47b3-a895-a90f24f2ea61
By Dolee - Posted on Monday, March 31, 2008 8:23:17 AM

The ASP.Net Media Suite

http://www.aspnetmedia.com/

URL Rewriting in ASP.NET

http://msdn.microsoft.com/en-us/library/ms972974.aspx

How to create OMA DRM v1.0 content

http://wiki.forum.nokia.com/index.php/How_to_create_OMA_DRM_v1.0_content

Protect Your Downloadable Files Using HTTP Handlers

http://www.devx.com/codemag/Article/34535/0/page/1
by Miguel A. Castro

For Secure ASP.NET Applications

http://msdn.microsoft.com/en-us/asp.net/aa336653.aspx