vote up 3 vote down star

Is there any function to encode HTML strings in T-SQL? I have a legacy database which contains dodgey characters such as '<', '>' etc. I can write a function to replace the characters but is there a better way?

I have an ASP.Net application and when it returns a string it contains characters which cause an error. The ASP.Net application is reading the data from a database table. It does not write to the table itself.

flag

The answers below are good but if those characters shouldn't be in the data then I'd suggest cleaning the data. Otherwise James is spot on. – Lazarus Mar 12 at 16:31
The characters are correct in the data and if I change the data I could break the legacy app. So thats not an option. – Leo Moore Mar 12 at 16:57

5 Answers

vote up 2 vote down check

We have a legacy system that uses a trigger and dbmail to send HTML encoded email when a table is entered, so we require encoding within the email generation. I noticed that Leo's version has a slight bug that encodes the & in &lt; and &gt; I use this version:

CREATE FUNCTION HtmlEncode
(
    @UnEncoded as varchar(500)
)
RETURNS varchar(500)
AS
BEGIN
  DECLARE @Encoded as varchar(500)

  --order is important here. Replace the amp first, then the lt and gt. 
  --otherwise the &lt will become &amp;lt; 
  SELECT @Encoded = 
  Replace(
    Replace(
      Replace(@UnEncoded,'&','&amp;'),
    '<', '&lt;'),
  '>', '&gt;')

  RETURN @Encoded
END
GO
link|flag
Thanks, you are correct. I did chnage it in production but forgot to update the previous post. – Leo Moore Sep 29 at 10:15
vote up 9 vote down

You shouldn't fix the string in SQL. A better way is to use a function in ASP.net called HtmlEncode, this will cook the special characters that cause the issues you're seeing see the example below. I hope this helps.

string htmlEncodedStr = System.Web.HttpUtility.HtmlEncode(yourRawStringVariableHere);
string decodedRawStr =  System.Web.HttpUtility.HtmlDecode(htmlEncodedStr);

Edit: Since you're data binding this from a datatable. Use an inline expression to call HTMLEncode in the markup of the GridView or whatever control your using and this will still satisfy your data binding requirement. See example below. Alternativly you can loop every record in the data table object and update each cell with the html encoded string prior to data binding.

<%# System.Web.HttpUtility.HtmlEncode(Eval("YourColumnNameHere")) %>
link|flag
Thanks but unfortunatly the data is returned in a datatable which is then assigned to a datasource. I suppose I could edit the returned datatable row-by-row but is there a better way – Leo Moore Mar 12 at 16:30
See my last edit. – James Mar 12 at 16:36
You can also use a BoundField. msdn.microsoft.com/en-us/library/… – bobince Mar 12 at 16:43
Yes that is true. – James Mar 12 at 17:04
vote up 3 vote down

I don't think data in a database should know or care about the user interface. Display issues should be handled by the presentation layer. I wouldn't want to see any HTML mingled into the database.

link|flag
I agree completely, but its not my choice. Its a legacy app with HTML type characters in the Guid (or what passes as the Guid). – Leo Moore Jun 12 at 9:29
1  
Presentation in the primary key? OMG. I'd refactor that as quickly as possible. – duffymo Jun 12 at 9:51
vote up 1 vote down

If you're displaying a string on the web, you can encode it with Server.HTMLEncode().

If you're storing a string in the database, make sure the database field is "nchar", instead of "char". That will allow it to store unicode strings.

If you can't control the database, you can "flatten" the string to ASCII with Encoding.ASCII.GetString.

link|flag
vote up 0 vote down

OK here is what I did. I created a simple function to handle it. Its far from complete but at least handles the standard <>& characters. I'll just add to it as I go along.

CREATE FUNCTION HtmlEncode
(
    @UnEncoded as varchar(500)
)
RETURNS varchar(500)
AS
BEGIN
    -- Declare the return variable here
    DECLARE @Encoded as varchar(500)

    -- Add the T-SQL statements to compute the return value here
    SELECT @Encoded = Replace(@UnEncoded,'<','&lt;')
    SELECT @Encoded = Replace(@Encoded,'>','&gt;')
    SELECT @Encoded = Replace(@Encoded,'&','&amp;')

    -- Return the result of the function
    RETURN @Encoded

END
GO

I can then use:

Select Ref,dbo.HtmlEncode(RecID) from Customers

This gives me a HTML safe Record ID. There is probably a built in function but I can't find it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.