Formatting DateTime to Date in SQL SERVER
Select convert(varchar(10),GetDate(),101) Output: 04/16/2009 Select convert(varchar(10),GetDate(),103) Output: 16/04/2009
Select convert(varchar(10),GetDate(),101) Output: 04/16/2009 Select convert(varchar(10),GetDate(),103) Output: 16/04/2009
Suppose Col1 is the field name for which you want to find duplicates: Select Col1, Count(Col1) as count from table1...
To stop displaying related videos we can add a parameter (rel=0 for stop displaying) to the url of the embedded...
Here are some of the differences between stored procedures and views Stored Procedures Can accept parameters Can contain multiple statements...
function isNumberKey(evt) { var charCode = (evt.which) ? evt.which : event.keyCode if (charCode > 31 && (charCode < 48 ||...
<% Response.Status = "301 Moved Permanently" Response.AddHeader "Location", "http://www.website.com/" Response.End %> Above code is enough for Redirection but its better...
Following is the code for permanent (301) redirect using php. A better approach would be to use .htaccess but there...
Use following URL. Replace mywebsite.com with the website url to check without http
Check your website for malware using Google Safe Browsing Tool http://www.google.com/safebrowsing/diagnostic?site=yourwebsite.com
$(document).ready(function() { $("#myTable").find("tr:gt(0)").remove(); });