Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
6k views

Display encoded html with razor

I'm new to mvc and razor. I store encoded HTML in the database. The only way i could display it correctly is : <div class='content'> ...
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
3answers
639 views

How to get Raw html from string in jquery?

I have &lt;label class='ash'&gt;Comment Removed&lt;/label&gt; in the database. When I show this on the grid. I get this on the page: <label class='ash'>Removed</label> ...
2
votes
1answer
152 views

MVC3 TextBoxFor with encoded text

Is there a way to use TextBoxFor helper with encoded text? for example: When using the following helper of MVC3 With Razor view engine : @Html.TextBoxFor(model => model.Description) and the ...
1
vote
1answer
163 views

Displaying HTML encoded styling in WPF

I get a string from database that includes a HTML styling (not sure what it's called) and I wan't to display it in my WPF app. I can decode in the ViewModel so I can use the .net library. I tried ...
1
vote
1answer
176 views

How to program a “decimal HTML decoder”?

I wish to create (in the R language) a "decimal HTML decoder" such as the one implemented in this website: http://www.hashemian.com/tools/html-url-encode-decode.php But I'm not sure where to start, ...
1
vote
3answers
303 views

Storing HTML in datastore and Decoding during XSL transformation

I'm trying to store html object tags for video players in a datastore. This data will be serialized and passed back to client javascript where it will be transformed and displayed in the browser to ...
1
vote
3answers
1k views

Using HttpUtility.HtmlDecode method with .NET Compact Framework?

A project using .NET Compact Framework does not allow use System.Web library. How can I do to HTMLDecode a string using .NET Compact Framework? I didn't found any class that do that.
0
votes
1answer
44 views

ASP.net HTMLDecode not working for Resource entries

I have a ASP.net MVC project, which utilizes resource entries (.resx) through out the project. Few the resources fed, have HTML in it example: Hello <b>World!</b> With paragraphs href ...
0
votes
1answer
40 views

VB.NET HTML Decoding in Gridview

So, I'm having difficulty decoding text in a VB GridView. Currently I have the following code: Private Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As ...
0
votes
1answer
112 views

So we've got our HTML escape functions that really work in a C++ manner, how to do unescape?

Here I've found a grate way to HTML encode/escape special chars. Now I wonder how to unescape HTML encoded text in C++? So codebase is: #include <algorithm> namespace xml { // Helper for ...
0
votes
1answer
144 views

c# 4.0 wpf html decode is not correctly decoding special characters - System.Net.WebUtility.HtmlDecode

The text i am trying to decode Anasayfa > OEM Ürünleri > Ekran Kartları > SAPPHIRE Alright this is how i am trying string srCategory = ...
0
votes
1answer
164 views

HTML Decoding a String in SQL Server

I have a string that I need to html decode the special characters back to normal characters. What is the best way to do this? Thanks, John
0
votes
1answer
120 views

Once something is HTML or URL encoded should it ever be decoded? Is encoding enough?

First time AntiXSS 4 user here. In order to make my application more secure, I've used Microsoft.Security.Application.Encoder.UrlEncode on QueryString parameters and ...
0
votes
1answer
302 views

LINQ to DropDownList with Server.HtmlDecode

I have this code which uses LINQ to populate a DropDownList: var userCategories = DataAccessLayer.Context.Categories .Where(c => c.UserName == HttpContext.Current.User.Identity.Name) ...
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
207 views

why “&#39;” is not getting converted to single quotes while using server.htmldecode()?

why ''' is not getting converted to single quotes while using server.htmldecode()? What is the best way to do the decoding while using '"'"?
0
votes
1answer
369 views

HTML decoding in C/C++

I'm using libcurl for getting HTML pages. I have some problems with Hebrew characters. for example this: &#1505;&#1500;&#1511;&#1493;&#1501; gets gibberish. How do I get Hebrew ...
0
votes
1answer
787 views

HTML Decode with encode from Latin-1 (ISO 8859-1) in iPhone/iPad SDK

I creating a rss reader for a site from Denmark, they have some thing like this in their CDATA: <description><![CDATA[><p><img ...
0
votes
3answers
1k views

HttpUtility.HtmlDecode driving me crazy!

This situation is driving me crazy!!: the following snippet does not work (as i should) ... string preResult = doc.DocumentNode.SelectSingleNode("//textarea[@name='utrans']").InnerText return ...
0
votes
3answers
495 views

Users entering ampersand & character messing up my sites w3c validation

my social networking site is w3c xhtml valid however users are able to post blog reports and stuff and at times enter in ampersand characters which in turn mess up my validation. How can I fix this ...
-2
votes
0answers
38 views

php htmldecode a title pulled into a page

How do I htmldecode this following piece of php? <?php echo $this->item->title; ?> Its the title text being pull in from joomla. Thanks