Anything related to encoding or decoding HTML entities.
0
votes
1answer
28 views
Php html is printing as it is on the page
I have and html string like this :
<div class="short-description"> <h2></h2> ...
-1
votes
0answers
8 views
Recommended Approach to Handle Char Escapes for Hash
I just realized there is a difference between .NET 2.0 and .NET 4.0 when encoding the apostrophe (tick) through
HttpUtility.HtmlEncode
The situation is that clients are allowed free-form text in ...
0
votes
1answer
26 views
How to display special characters from MySQL database to html?
I have a huge database with a lot of languages stored in. All data stored in utf8_unicode_ci and my database collation is utf8_unicode_ci and I use special php page to call the sql data
this is my ...
0
votes
1answer
19 views
How to force CKEditor to use HTML Numbers instead of special Characters
How can I force CKEditor to automatically convert special Characters to HTML Numbers?
For example when I write 6% in the editor and then look at the source code I get <p>6%</p> but what ...
1
vote
2answers
75 views
Can an HTML encoded string be converted to JSON?
I'm getting encoded data from the server, which is encoded using .NETs WebUtility.HtmlEncode.
This data is then displayed and needs to be sent back to the server for some operations. During this ...
0
votes
0answers
63 views
Escaping Quotes & other special characters to get HTML Encoded string in Excel
I have Excel cells that contain Newlines, Quotes & few more special characters. I wrote a formula in the last column which is a MySQL INSERT statement. When I execute the SQL statement, it shows ...
0
votes
2answers
58 views
apostrophe in JSON is causing errors on server
I have a string that I'm doing a JSON.stringify(str) on in Javascript. The string is L'Oreal.
However, as this variable gets passed around before the JSON.stringify happens, its value becomes
...
0
votes
0answers
27 views
HTML decode WOX Objective-C
I'm developing an iOS application working with a Java server that send XML objects HTML encoded (WOX standard : http://woxserializer.sourceforge.net).
This standard looks like this :
<object ...
3
votes
1answer
77 views
Why are HtmlEncode and HtmlDecode not isomorphic in .NET?
I find this surprising, and rather annoying.
Example:
Decode(”) => ”
Encode(”) => ”
Relevant classes:
.NET 4: System.Net.WebUtility
.NET 3.5: System.Web.HttpUtility
I ...
0
votes
0answers
76 views
How to encode decoded-html in Node.js?
I'm playing around with Node.js and have connected to my mysql-database and are fetching
some blog-records, but the contents are decoded html in the db. I can't seem to encode.
I've tried it in the ...
2
votes
1answer
78 views
Delphi/Cpp Equivalent to RawURLEncode in PHP
I was looking for a equivalent function to PHP RawURLEncode (and Decode) in cpp builder (or delphi).
I use the following string to test: _%_&_+_=_ _"_'_a_b_c_d_e_f_g_h_ (I wish to encode only var ...
0
votes
1answer
137 views
CKEditor html content lifecycle: asp net mvc case
My content will be edited number of times.So i need to store result html to database and load it again when it is neccessary.Here is my current start implementation:
@using ...
0
votes
1answer
38 views
Outlook changes & to &
I habe an ASP website, and I want to send an EMail using a Template.
In the template i have two placeholders inside an <a href=""> (%CODE% and %EMAIL%) they are supposed to be query strings
it ...
0
votes
3answers
85 views
Decode HTML entities with Regex
I've a large amount of encoded text, like this:
<div id="readingPaneContentContainer" class="ClearBoth" cmp="cmp" ...
0
votes
1answer
32 views
Prevent HTML Decoding on Form Values
I have a form element such as:
<input type="text" value="O’Reilly" />
But when this form is submitted, the value passed to the form handler is decoded and the ’ character is sent ...
0
votes
3answers
64 views
Using multiple languages on one HTML page
My simple question is, how can I use multiple languages in one HTML page?
Something like
<div>
<p>This text is in English</p>
</div>
<div>
<p>This text in ...
0
votes
0answers
68 views
Templated Razor Delegates and XSS (Html Encoding)
I'm reviewing my ASP.NET MVC application for any possible XSS vulnerabilities, and came across uses of the "Templated Razor Delegates" as described in:
...
2
votes
0answers
235 views
Allow all special characters and prevent SQL injection / XSS
I am using Asp.NET MVC 3 with EF 4.1 With SQL Azure. I have both linq expressions as well as stored procedures.
Now, I need to allow all the special characters like "';&<>/ etc to be ...
-2
votes
1answer
54 views
Python Response Decoding
For the following lines that use urllib:
# some request object exists
response = urllib.request.urlopen(request)
html = response.read().decode("utf8")
What format of string does read() return? I've ...
1
vote
1answer
124 views
How to encode the kendo editor field?
I am using the kendo editor. If I write any html data like : <img src=x onerror=alert(0) > as an input. The script is getting executed. Means the kendo editor is not secure. How I can encode the ...
0
votes
1answer
245 views
How to correctly use the Server.htmlEncode / Server.htmlDecode without compromising security?
QUESTION
How to submit html code to a textbox and output as text without compromising security?
This is what I'm currently trying:
DATA GOES IN (SUBMITTED INTO TEXTBOX)
Dim txtInput As String = ...
1
vote
1answer
57 views
How to prevent ░ or ▀ changing to ░,etc?
i am trying to add this in source code of my page inside a comment.
However,when i save,the characters change from this
to
i tried encoding the characters,but in vain.They still change.
Is ...
2
votes
1answer
70 views
Does using razor in WebMatrix mitigate an XSS threat?
I have purposfully (for testing) assigned the following variable in WebMatrix C#:
string val = "<script type='text/javascript'>alert('XSS Vector')</script>";
Later in the page I have ...
1
vote
2answers
66 views
Encode WhiteSpace in Razor Dynamic Attributes
I have dynamic HTML attributes generated using Razor.
Everything seems to work fine except when I generate an attribute value with a whitespace within like:
item.Name = "Organisation Structure";
...
0
votes
1answer
161 views
how to check the input value is html encoded
is there any way to check if a text box value is already html encoded or not.
For page validation i am using the following code on focus out of a textbox.
$(document).ready(function() {
...
0
votes
0answers
149 views
Stop ASP.NET web control from HTML encoding output > Specifically, list items in a bulleted list
I have an ASP.NET bulleted list control that is html encoding the list items.
<strong>First Name</strong> is required and must consist of letters only.
Is not resulting in "First Name" ...
1
vote
2answers
77 views
does HTMLEncode(URLEncode(string)) always = URLEncode(HTMLEncode(string))?
I'm not sure if it's ever necessary to URL encode and HTML encode a string (well, perhaps unless you are building an html file that contains hyperlinks constructed using data pulled from a database or ...
2
votes
2answers
169 views
MVC3 C# Potentially dangerous request error
I have an MVC3 C#. Web App. One of our properties uses an RTF control for our TextBoxFor controls:
@Html.TextAreaFor(model => model.SowDescription,
(object)new
...
-2
votes
2answers
157 views
how do you do html encode using javascript? [duplicate]
Possible Duplicate:
JavaScript/jQuery HTML Encoding
I have html tags need to be encoded.
<b>test</b>
I need to encode it to :
<b>test</b>
I am ...
1
vote
1answer
68 views
Using different HTML encodings depending on context for IHtmlString
If you look at anti-XSS libraries they typically have different encodings for HTML content and HTML attributes. For instance using Microsoft's WPL implementation:
<@ Imports ...
0
votes
2answers
279 views
HTML tags encoded when appending CDATA tag
In my page, there is a div in which I have to display html from javascript. So in javascript, I append the CDATA tags so that the html is displayed as data. Following is the code I have used
var ...
1
vote
1answer
353 views
HTMLEncode/HTMLDecode and the apostrophe ASP.net
I have text box that allows the user to enter something which is stored in the database, and then another text box which retrieves this value from the database and displays it. Currently, I have ...
0
votes
2answers
217 views
Remove HTML Encoded characters
I'm getting some data from the database and it has HTML Encoded chars ( ). What options are there for removing these?
I don't want these rendered at all...I want them stripped from the ...
1
vote
1answer
58 views
Escape HTML tags in Smalltalk String
I'm desperately trying to write a very basic method in Smalltalk to escape HTML tags ('<' and '>').
So far, this is what I have come up with:
escapeHtml: str
|tags newString tmpString|
...
0
votes
1answer
299 views
Testing for “Invalid character in a Base-64 string”
I've been seeing the "Invalid character in a Base-64 string" error quite a bit in my application log. I've read up on a bunch of different reasons why it may come up and some potential fixes. The ...
0
votes
2answers
94 views
Why am I getting †character in plain HTML?
I have bound data to a repeater control in ab asp.net application. When the data is displayed in plain HTML text in the browser it comes with these characters: â€. I am unable to figure out the reason ...
1
vote
0answers
108 views
jquery-json with special/extended ascii/utf characters
I have been using jquery-json for a while now and find it to be a very reliable extension. However, I have just run into a little issue tht is making me wonder if I am not skating on thin ice. Here ...
2
votes
1answer
344 views
is there a way to highlight all the special accent characters in sublime text or any other text editor?
I a using the the HTML encode special characters in Sublime text to convert all the special character into their HTML code. I have a lot of accented characters in different parts of the file. So, it ...
1
vote
1answer
65 views
Encode in scraping data with Python
I want to scrape the content of websites with Python. Just like this:
Apple’s stock continued to dominate the news over the weekend, with Barron’s placing it on the top of its favorite 2013 stock ...
0
votes
2answers
283 views
Display \n \r correctly in HTML from JSON
I have a String fetched from a Database and send from a backend using Servlet. The servlet constructs the JSON and send it to the client
I use this function to escape the JSON
public static String ...
2
votes
1answer
267 views
Why isn't PHP's htmlentities() converting the œ character?
I'm having some trouble with PHP's htmlentities() / htmlspecialchars() functions. The string I am converting contains the character œ (html equivalent is '&oelig'), yet both htmlentities() and ...
3
votes
5answers
435 views
ASP.NET automatically converts & to &
Minor issue, but it's driving me nuts nonetheless.
I'm building a url for a <script> tag include to be rendered on an ASP.NET page, something like this:
<script src='<%= ...
1
vote
2answers
169 views
JQuery UI encoding nightmare
I want to be able to pass any string to the buttons text in JQuery UI.
Suppose I have this string:
Ajouter L'amie a la liste "amies"
The only way to actually pass this text without causing a ...
1
vote
3answers
192 views
Determine if string is encoded HTML via jQuery?
I'm working on a validation script, but I'm running into a very particular issue.
If a user enters a string that happens to be an encoded html character (like & or &), it will output ...
0
votes
1answer
79 views
UTF8 problems in jsp and javascript
I have jsp page with textbox that contains UTF8 letters. When I pull the value with javascript it becomes into this format: %u05EA%u...
How do I turn it back into a string that I can understand in ...
0
votes
1answer
199 views
HTMLEntities vs. URI.escape for decoding a string in Ruby
BACKGROUND: I am looking to decode strings that include HTML entities - i.e. "c#" should be converted to "c%23".
I have found the HTMLEntities project to be generally recommended, but have also ...
0
votes
3answers
297 views
Does C# have something like PHP's mb_convert_encoding()?
Is there a way on C# that I can convert unicode strings into ASCII + html entities, and then back again? See, in PHP, I can do it like so:
<?php
// RUN ME AT COMMAND LINE
$sUnicode = ...
1
vote
3answers
554 views
Converting HTML entities to Unicode Characters in C#
I found similar questions and answers for Python and Javascript, but not for C# or any other WinRT compatible language.
The reason I think I need it, is because I'm displaying text I get from ...
1
vote
1answer
647 views
Arabic language in php/mysql appears “????” question marks in html [duplicate]
Possible Duplicate:
Save Data in Arabic in MySQL database
I have a problem with retrieving Arabic data from MYSQL database using PHP, it appears as question marks "????" in HTML:
I have a ...
0
votes
1answer
688 views
ASP.net insert html encoded code into page
I have a dim which contains html encoded code, which is stored in DB.
How can I insert the code into asp.net page?
I would like to perform the action in code behind ( VB.net / C# ).
What ...









