How would you grab this element by "P"??

simpleonline

Active member
Joined
Sep 13, 2011
Messages
33
Programming Experience
Beginner
I am trying to grab the inner text of this paragraph marker but I don't have a clue as how this is to be dones because the inner text changes on refresh.
any ideas?
Thanks
VB.NET:
<DIV class=rightcol>
<P class=description>[B][I][U]I need to grab everything in here[/U][/I][/B]</P><INPUT id=moreoptions class="primary textbox" tabIndex=1 name=toppings[input]> <INPUT id=toppings2> </DIV></DIV></DIV>
 
Since you are using VB.Net how bout trying
<asp:TextBox id="txtMyTextBox" runat="server" ></asp:TextBox>

You can acces the textbox in the code behind by My.txtMyTextBox.Text on the postback.


 
Back
Top