;;;;;;;;;;;;;;;;
; 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.
Wednesday, March 18, 2009
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)