My programming language is ASP.NET C# and HTML.
I'm working on a program that will get the contents of a string and output the values between a specific div tag in my code.
Here is my original text:
<div id="claimsfooter" style='display:none;'>
here is the text I need to get
</div>
Here is what I'm trying to output:
here is the text I need to get <--- I need to assign this text to a variable.
The div tag will always begin with <div id="claimsfooter" style='display:none;'> and end with </div>. I need to pull the middle piece out.
Any help would be most appreciated.