I was finding difficult to get the value of tag of one page and use that value in another page. Note that the value are getting dynamically in the page. one part is static value and other part is dynamically coming. It is coming when we start a session. These two values are separated by pipe(|). Below is the example: site 1:
<select name="ETD" id="nBFDXS">
<option value="xxx|12341234123412341234123421341234123412" >abc </option>
</select></td>
xxx is the static value which is separated by pipe then the dynamic values.
now I want to store this value and use this value in another page. which has same code as above. How i can do this? TIA