Tagged Questions
The htmlencode tag has no wiki summary.
27
votes
4answers
5k views
Emitting unencoded strings in a Razor view
As ScottGu says in his blog post «by default content emitted using a @ block is automatically HTML encoded to better protect against XSS attack scenarios».
My question is: how can you output a ...
21
votes
7answers
12k views
C# = HtmlEncode from Class Library
I have a class library (in C#). I need to encode my data using the HtmlEncode method. This is easy to do from a web application. My question is, how do I use this method from a class library that is ...
12
votes
5answers
3k views
What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?
I just ran across a question with an answer suggesting the AntiXss library to avoid cross site scripting. Sounded interesting, reading the msdn blog, it appears to just provide an HtmlEncode() method. ...
7
votes
1answer
2k views
Can you do HtmlDecode & HtmlEncode in Silverlight?
So since System.Web & HttpContext isn't available in Silverlight is there a way to do HtmlDecode & HtmlEncode inside a Silverlight app without some horrendous Regex?
3
votes
2answers
608 views
Microsoft AntiXSS - Is there a need to Decode?
The HttpUtility class provides for both encoding and decoding. But, when I use the MS AntiXSS 3.1 Library I have a set of methods only for encoding, does this mean decoding can be avoided?
For ...
3
votes
3answers
870 views
Fortify and AntiXSS
My company requires our ASP.NET code to pass a Fortify 360 scan before releasing the code. We use AntiXSS everywhere to sanitize HTML output. We also validate input. Unfortunately, they recently ...
3
votes
1answer
541 views
ASP.NET Server.HtmlEncode Wont Encode €
I know that the EURO currency symbol (€) is encoded as € in HTML, but the System.Web.HttpUtility.HtmlEncode("€") doesnt encode it at all. Does anyone know why that is?
2
votes
3answers
60 views
Is it enough to use HTMLEncode to display uploaded text?
We're allowing users to upload pictures and provide a text description. Users can view this through a pop up box (actually a div ) via javascript. The uploaded text is a parameter to a javascript ...
2
votes
2answers
60 views
String to HTML?
I can't understand why the code below return the string as a string but not as html,
function en_code($string)
{
# find the match of [br] = a break = <br>
$output = ...
2
votes
1answer
56 views
Expand an HTML string to have named character entities
Is there a way in the .NET class library to encode a string so that any character for which a named entity exists is replaced to use this named entity? HttpUtility.HtmlEncode doesn't appear to help:
...
2
votes
1answer
57 views
Is it necessary to html encode right angle brackets?
I'm adding some meta description data to my header like so:
HtmlMeta meta = new HtmlMeta();
meta.Name = "description";
meta.Content = description; // this is unencoded
page.Header.Controls.Add(meta);
...
2
votes
1answer
78 views
HtmlEncoding values that are already HtmlEncoded
We have taken over a .NET project recently and upon looking at the db we have the following in some columns:
1) Some columns have values such as
" & etc etc
2) Some have ...
2
votes
2answers
3k views
Is there a javascript equivelent of htmlencode / htmldecode from asp.net?
The problem is this:
You have a textbox, you type in some text, send it to the server. On another page, that value is retrieved and displayed on screen in a textbox and a label.
It's important to ...
2
votes
3answers
398 views
How to convert a symbol - “ † ” to HTML code?
I'm trying to write the dagger '†' symbol to a HTML page which gets converted to a PDF document, but this appears on the PDF as 'â€'
I understand that I need to use the HTML code for this symbol, ...
2
votes
1answer
361 views
Html encoding in MVC input
I'm working through NerdDinner and I'm a bit confused about the following section...
First they've added a form for creating a new dinner, with a bunch of textboxes delcared like:
<%= ...
2
votes
1answer
300 views
How do I write an HTML entity in button text in ASP.NET?
I need to write out a submit button in ASP.NET so that the button text value is HTML-encoded using the proper HTML entities for the various French characters with accents.
The button is simply ...
2
votes
3answers
544 views
Should Html.Encode be called when building ActionLinks in ASP.NET MVC
If the name of a link is pulled from the database, should you be calling the Html.Encode method to clean the name?
For example:
Html.ActionLink(Model.PersonFromDB.FirstName,
...
2
votes
4answers
628 views
encode html in Asp.net C# but leave tags intact
I need to encode a whole text while leaving the < and > intact.
example
<p>Give me 100.000 €!</p>
must become:
<p>Give me 100.000 €!</p>
the html tags must ...
2
votes
2answers
580 views
Jsp, Jquery and Json encoded characters issue
Working with JSON is quite new to me, yet I already like it. But i'm facing an annoying issue.
Here's how things work:
jquery makes an Ajax request for a specific url,
this url is a STRUTS action, ...
2
votes
2answers
229 views
How to search for text in sql server when storing different languages
I have a website that has product names containing French and English words. When I store a product name I store it as html encoded in the ProductName field in my SQL Server. For example the word ...
1
vote
1answer
36 views
HtmlEncode Isn't Encoding Properly
It doesn't appear that the strings are being encoded.
Issue:
Dim encodedStr As String = HttpUtility.HtmlEncode("<p>This is a test</p>")
The output produces:
<p>This is a ...
1
vote
1answer
60 views
Ipad/mobile and html encoded Jquery URL link
I have made a web app and we are using imageflow
And in the description for the image we have a link to another part of our website. The problem is that the href has to be html encoded or else it ...
1
vote
1answer
127 views
.net HTML Encoding ISO10646 characters, Trade Mark, Euro, etc
I am having a constant series of problems with encoding characters for output in an XML file through .NET. I have a feeling that the problem relates to a setting on the Response object being used but ...
1
vote
2answers
446 views
How to encode the plus (+) symbol in URL
The URL link below will open a new Google mail window. The problem I have is that Google replaces all the plus (+) sign in the email body with blank space. It looks like it only happens with the + ...
1
vote
5answers
176 views
How do I escape some html in javascript?
Given the text
<b>This is some text</b>
I want to write it to my page so that it shows up like this:
<b>This is some text</b>
and not like this
This is some text
using ...
1
vote
1answer
245 views
HtmlEncode data from a webservice
I've created a simple web service for use with the ajax autocompleteextender control. It works great, I'm almost done except there is one thing bothering me. When there is data in the database that ...
1
vote
3answers
328 views
C# WebUtility.HtmlEncode at .NET 3.0
I'm making an (form) application, with the possibility to send a notification mail.
On my application there are two variables, that will be placed into the html body of the mail. One of them is a ...
1
vote
1answer
209 views
HTML Encoded strings recognized by the javascript engine, how's it possible?
Well. This night was a very strange night to me. I am sorry to create a new question after creating two other questions previously, but this is another argument at all. If I get an answer here, I'll ...
1
vote
1answer
1k views
HTMLEncode in Winforms
I have a Winform application in which I am checking if a fully qualified file name c:\somefolder\my file name.txt exists in the XML.
Unfortunately, the XML holds the strings html encoded so ...
1
vote
2answers
312 views
Wrap an ASP.NET control with double quotes
I'm working in a Repeater over blog posts and I'm displaying a ShareThis JavaScript piece at the bottom. The Title and URL of the post are being sent to JS. In one test case, the title of a post has a ...
1
vote
3answers
1k views
HTMLencode HTMLdecode
I have a text area and I want to store the text entered by user in database with html formatting like paragraph break, numbered list. I am using HTMLencode and HTMLdecode for this.
Sample of my code ...
1
vote
1answer
680 views
How can I HTML-encode a string and use human-readable encoded tags (ex: ê instead of ê )
Greetings, I'm looking for a way to encode a string into HTML that uses human-readable tags such as ê (=ê). At the moment, I am using the HttpUtility.HtmlEncode() function, but it appears to ...
1
vote
4answers
200 views
Should HTML be encoded before being persisted?
Should HTML be encoded before being stored in say, a database? Or is it normal practice to encode on its way out to the browser?
Should all my text based field lengths be quadrupled in the database ...
1
vote
3answers
665 views
ASP.NET MVC: How to allow some HTML mark-up in Html Encoded content?
Is there some magic existing code in MVC 2 to Html.Encode() strings and allow certain html markup, like paragraph marks and breaks? (coming from a Linq to SQL database field)
A horrible code example ...
0
votes
3answers
90 views
HTML Encode & URLs
I have an input string that must be stripped from html codes, so I use the default .Net function .HtmlEncode() to escape all dangerous characters.
Now I'm trying to replace URL's in the input ...
0
votes
0answers
104 views
Help with Encoding Html entity characters in VB.NET?
I'm writing a chat client in VB.NET and the user can right click a dialog box and choose to visit the users profile page. It's all well until the user has a <, >, characters in their nickname, I ...
0
votes
0answers
37 views
Trouble with an html encoded ajax response
I do a call Ajax and I htmlEncode the response on the server side (in classic asp), all the "&" are replaced by "&" on the response (client side) . The browser didn't render the special ...
0
votes
2answers
401 views
PHP convert foreign characters with accents
Hi I'm trying to compare some text to the text in a database.. in the database any text with an accent is encoded like in html (ie. é) when I compare the database text to my string it ...
0
votes
2answers
64 views
Encoded string length greater than max specified for user
I'm using ASP.NET with sql-server. I have an area where the user can enter text of a maximum amount. I encode this text as a good measure but the encoded length can be greater than this maximum amount ...
0
votes
4answers
1k views
Encode HTML before POST
I have the following script, which encodes some of the value it receives propertly, but it does not seem to encode double quotes.
How do I encode the full value properly before posting?
function ...
0
votes
2answers
305 views
HTML Encode very strange characters after decoded by ipBoard
I have never seen these characters before. I read out information from a IPBoard database and displayed them on my page. What I saw was this:
( ゚ Д゚)
instead of this ( ゚ Д゚)
Be careful ...
0
votes
1answer
76 views
Potentially dangerous script with forms['formName'].submit but not with <input type=submit>
I had just fixed a bunch of issues I was having in some forms that contained rich text editors (CK Editor) and getting XSS errors ("Potentially dangerous script..."). It was all working after setting ...
0
votes
2answers
363 views
MvcHtmlString still encoding characters
I'm trying to use MvcHtmlString.Create to create a JavaScript variable. However the output is still being encoded.
var geocode_jsonresult = @MvcHtmlString.Create(Url.Action("GeoLocation", "Generic", ...
0
votes
5answers
316 views
Html encoding in .NET class library
I have a utility class for sending emails. The emails are generated as html.
I'm having problems with encoding special characters which aren't getting displayed correctly.
However, I can't work out ...
0
votes
1answer
332 views
HTML encoding custom HTML helper
I wish to encode my HTML sent to the browser. In my .ASPX pages I can use the <%: %> syntax. In a HTML helper of mine I try...
public static string Image(this HtmlHelper helper, string ...
0
votes
2answers
99 views
How do I encode html leaving out the safe html
My data coming from the database might contain some html. If I use
string dataFromDb = "Some text<br />some more <br><ul><li>item 1</li></ul>";
...
0
votes
1answer
95 views
How to encode a value that is rendered to page and finally used in URL?
I have a script that is rendered to an html page as a part of a tracking solution (etracker).
It is something like this:
<script>
var et_cart= 'nice shoes,10.0,100045;nice jacket,20.00,29887';
...
0
votes
1answer
333 views
Adding a clientside onload function to an ASP.NET control in 4.0 encodes my quotes
I'm trying to add a Javascript function to the onLoad event of a asp:Panel. It goes something like this:
string clickFunction = "$('[id*=lblHiddenPageArray]').text('');"
...
0
votes
2answers
402 views
To HTMLENCODE or not to HTMLENCODE user input on web form (asp.net vb)
I have many params making up an insert form for example:
x.Parameters.AddWithValue("@city", City.Text)
I had a failed xss attack on the site this morning, so I am trying to beef up security ...
0
votes
2answers
108 views
NHibernate: Should I encode inputs?
I use NHibernate to persist my objects.. However, I cannot seem to find any information about whether I need to encode inputs?
For example:
string firstName = TextboxFirstName.Text;
string lastName ...