HDML - Handheld Device Markup Language
http://developer.openwave.com/dvl/tools_and_sdk/phone_simulator/choosing.htm
Monday, April 13, 2009
Image Gallery
http://www.outcut.de/MooFlow/MooFlow.html
http://net.tutsplus.com/articles/web-roundups/50-excellent-image-galleries-you-can-use-today/
http://jqueryfordesigners.com/slider-gallery/comment-page-8/
Wednesday, March 18, 2009
How to extend upload file Limit in PHP
;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;
Goto
C:\wamp\bin\apache\Apache2.2.11\bin\php.ini
edit php.ini
Find upload_max_filesize
Change 2M to your maximum file upload size.
; File Uploads ;
;;;;;;;;;;;;;;;;
Goto
C:\wamp\bin\apache\Apache2.2.11\bin\php.ini
edit php.ini
Find upload_max_filesize
Change 2M to your maximum file upload size.
Tuesday, December 2, 2008
Crystal Reports for Visual Studio 2005
How to create Web or Windows applications in Crystal Reports for Visual Studio 2005.
http://msdn.microsoft.com/en-us/library/ms225270(VS.80).aspx
http://msdn.microsoft.com/en-us/library/ms225270(VS.80).aspx
Monday, November 24, 2008
Monday, November 3, 2008
Saturday, October 18, 2008
Friday, October 3, 2008
Converting Decimal to Time Format
decimal sec=123456;
TimeSpan t = TimeSpan.FromSeconds(sec);
string strTime = String.Format("{0}:{1:00}:{2:00}", t.Hours, t.Minutes, t.Seconds).ToString();
Response.Write(strTime);
TimeSpan t = TimeSpan.FromSeconds(sec);
string strTime = String.Format("{0}:{1:00}:{2:00}", t.Hours, t.Minutes, t.Seconds).ToString();
Response.Write(strTime);
Wednesday, September 17, 2008
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);
strIpAddress = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (strIpAddress == null)
{
strIpAddress = Request.ServerVariables["REMOTE_ADDR"];
}
Response.Write(strIpAddress);
Subscribe to:
Posts (Atom)