Passing a variable
Posted: Thu Oct 20, 2011 11:44 am
For security purposes, we wanted to add a security key in our asp page. But when your platform calls the next page, it drops the key from the page. Is there anyway to prevent this, or to pass the key to the next page as a variable. This would be a variable that is not input by the user. Just a static variable. Below is the code and log to show what I mean.
Here is the log:
DocumentParser::FetchDocument(https://enroll.rcbtaxdivision.com/RcbWe ... Voice.aspx)
Cache Miss: https://enroll.rcbtaxdivision.com/RcbWe ... seq=123456
Attempting to fetch https://enroll.rcbtaxdivision.com/RcbWe ... seq=123456
As you can see, when it tries to fetch the page, it is dropping the key at the end of the url. Is there any way to prevent this from happening?
Code: Select all
<filled>
<if cond="rfndamt2==1">
<submit namelist="ssn zip totalamt" next="https://enroll.rcbtaxdivision.com/RcbWeb/WebSrvc_PlumVoice.aspx?SomeFakeKeyCode"/>
<elseif cond="rfndamt2==2"/>
<goto next="#refund"/>
</if>
</filled>
DocumentParser::FetchDocument(https://enroll.rcbtaxdivision.com/RcbWe ... Voice.aspx)
Cache Miss: https://enroll.rcbtaxdivision.com/RcbWe ... seq=123456
Attempting to fetch https://enroll.rcbtaxdivision.com/RcbWe ... seq=123456
As you can see, when it tries to fetch the page, it is dropping the key at the end of the url. Is there any way to prevent this from happening?