helping my friend with his old ASP site and ran into a problem, so I wanted to quit this to find out if I could get help.
A site basically needs to send POST data to another page, which it does well. The problem is that he needs to READ the username / password on the receiving page, and the site currently holds this in hidden fields, which is clearly not suitable, since you can see it in the source code.
How can you pull data on an ASP page without hiding it in the input field? I know that it can be saved as a variable, but then I can not perform POST, and if I put this variable in the input value field, it will appear in the source.
Any help would be appreciated.
Thank!
source
share