vote up 1 vote down star

Hi all,

I am fairly new to asp.net and come into a problem whilst using a gridview.

I have added some entries that contain the "&" symbol eg "PR Murphy & Associates". I haven't done any encoding of my data prior to inserting it into the database.

When the gridview is changed to edit mode my text looks like this: "PR Murphy & Associates"

Is thee a ny way I can stop it from encoding the information, I mean just keep the text as "PR Murphy & Associates" when inserting and then after/during an edit.

Thanking you

flag

68% accept rate
I am quite convinced that the GridView control does the right thing. Maybe your expectations are wrong? In what situation would encoding the HTML entities be undesired? – Tomalak Mar 30 at 8:58
@Tomalak: I'm inclined to agree with you. The only time I ever have to turn off HTMLEncoding is when I am trying to do string formatting on columns that contain information such as currency. – TheTXI Mar 30 at 9:00

1 Answer

vote up 2 vote down check

In the GridView's menu, you can select the column and under the properties for that column you can set HTMLEncode to False (or True depending upon your needs).

link|flag
The field is not a bound field though. It is a <asp:TextBox> inside a template field. – Jason Mar 30 at 8:56

Your Answer

Get an OpenID
or

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