All I want to do is moving a formatted values from asp literal to a string.
Eg:
<asp:literal id='test'> </asp:literal>
In .cs
test.Text = '<b tag>USA</b tag>';
String newTest = test.Text;
As of am getting 'USA' this value in the string newTest. All I am trying to get is USA.