There is a page on which there is an 'input' element, with a tag 'hidden', but in its 'value' there is a string to be obtained, how to implement it in java?
- Do you want to get a value when submitting a form or requesting a page and retrieving a value from an element? - talex
- First you need to get this value from the page, and after that, it is used - Denis
- What does it mean to get out of the page? What to get? As a result of what action to start to get? - Olexiy Morenets
- As a result of a request to her, get this item, I think so - Denis
- oneRetrieve the HttpServletRequest request attribute. String hidden = (String) request.getAttribute ("name_field") - Andrii Torzhkov
|