Asp.net – Decoding TextBox.Text from a GridView
I have a GridView control. Each row has a textbox with a description I need. When I pull back the description I see that the (") has been encoded: TextBox selectedRowTextbox = (TextBox)selectedRow.Cells[5].Controls[1]; string selectedRowText = selectedRowTextbox.Text; The result: 24"…