I'm new to asp.net.
compatabilityInfo.Text += "<br><b>" + reader.GetString(1) + "/b> " + reader.GetString(2);
compatabilityInfo is the id of a literal control. After the above string is concatenated I need to remove the first 4 characters ( the first "<br>" ).
I was going to build a substring starting at the third character and going to the last. I'm wondering if I can treat compatability.Text just like any other string. Or is it different because it's referencing a literal control?



/b> " + reader.GetString(2);


Bookmarks