Search

You searched for the word(s): userid:804481

Matching Posts

  • Re: 2checkout Integration

    http://acmeonlinebooks.com/?p=advanced
    Posted to Free For All (Forum) by gunjansa on 10/28/2009
  • Re: Update Query Help

    http://forums.devshed.com/mysql-help-4/update-cannot-specify-target-table-in-from-clause-513821.html UPDATE tbltest SET status ='Expired' WHERE id in ( SELECT id FROM (SELECT * FROM tbltest) AS temp WHERE nxtdate<now() )
    Posted to MySQL (Forum) by gunjansa on 10/23/2009
  • Re: javascript validation

    http://acmesoffware.com/acme/default.asp This is the code for the form <form name="frmInput"> Enter something: <input name="txtInput" size="4"> <input type="button" value="Validate" onclick="validateInt()"></input> <br /> <br /> Enter a range to check if the above is within: <br /> <br /> from <input name="txtA" size="4"> to <input name="txtB" size="4">
    Posted to Client Side Web Development (Forum) by gunjansa on 9/17/2009
  • Re: Htaccess in IIS

    RewriteEngine on RewriteCond %{HTTP_HOST} ^yoursite.com [NC] RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
    Posted to Configuration and Deployment (Forum) by gunjansa on 8/24/2009
  • Re: Javascript - email address validation

    function emailCheck(str1) { var RegExp = /^((([a-z]|[0-9]|!|#|$|%|&|'|\*|\+|\-|\/|=|\?|\^|_|`|\{|\||\}|~)+(\.([a-z]|[0-9]|!|#|$|%|&|'|\*|\+|\-|\/|=|\?|\^|_|`|\{|\||\}|~)+)*)@((((([a-z]|[0-9])([a-z]|[0-9]|\-){0,61}([a-z]|[0-9])\.))*([a-z]|[0-9])([a-z]|[0-9]|\-){0,61}([a-z]|[0-9])\.)[\w]{2,4}|(((([0-9]){1,3}\.){3}([0-9]){1,3}))|(\[((([0-9]){1,3}\.){3}([0-9]){1,3})\])))$/ if(RegExp.test(str1)){ return true; }else{ return false; } }
    Posted to Client Side Web Development (Forum) by gunjansa on 8/19/2009
  • Re: Next and Prev buttons not working

    http://authors.aspalliance.com/aspxtreme/webforms/controls/specifyingpagingbehaviorindatagrid.aspx <% @ Import Namespace="System.Data" %> <% @ Import Namespace="System.Data.OleDb" %> < html > < head > < title > DataGrid Custom Paging Controls Example </ title > < link rel="stylesheet" href="/aspxtreme/shared/netdemos.css" > < script language="C#" runat="server" src="fetchData_oledb.cs"
    Posted to Crystal Reports (Forum) by gunjansa on 7/17/2009
  • Re: Problem hiding the Div in firefox

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=iso-8859-1" / > < title >Switch menu</ title > < style type = "text/css" > <!-- body { text-align:center; margin:30px; } #wrapper { text-align:left; margin
    Posted to Client Side Web Development (Forum) by gunjansa on 7/16/2009
  • Re: Show and hide of div

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3.org/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=iso-8859-1" / > < title >Switch menu</ title > < style type = "text/css" > <!-- body { text-align:center; margin:30px; } #wrapper { text-align:left; margin
    Posted to Client Side Web Development (Forum) by gunjansa on 7/16/2009
  • Re: SQL Server 2005 query with date function

    Function to convert DateTime to MM/DD/YYYY format + SQL SERVER Function to convert DateTime to MM/DD/YYYY format CreateFUNCTION [dbo].[tkfunConvertDateToMMDDYYYY](@dtDate varchar(10)) RETURNS VARCHAR(10) AS BEGIN RETURN substring(@dtDate,4,2)+'/'+substring(@dtDate,1,2)+'/'+substring(@dtDate,7,4) END
  • Re: DateTime from dd/MM/yyyy to yyyy-MM-dd

    If you have the data as a string: DateTime.Parse(yourDataAsAString).ToString("yyyy-MM-dd")
    Posted to Getting Started (Forum) by gunjansa on 6/24/2009
Page 1 of 6 (53 items) 1 2 3 4 5 Next > ... Last ยป