Friday, March 31, 2006
Comment Out Server Controls (ASP.NET)
{
<%
--
--
%>
<%--
--%>
}
Thursday, March 30, 2006
Remove Carriage Return, Line Feed, Tab in TSQL
{
-- remove carriage return, line feed, and tab from a field in tsql
REPLACE(REPLACE(REPLACE(MyField, CHAR(10), ''), CHAR(13), ''), CHAR(9), '')
}
‹
›
Home
View web version