This is the first time I have ever posted anything to a forum, so if I have made a mistake, please let me know.
I took over the maintenance of an existing Intranet site for the government and am running into an issue with the pages involved with displaying a student's transcript.
There is a form that allows users to input information about the person they wish to find and then sends the info. to another page that searches two databases (FoxPro and SQL Server), finds any matching records, and displays the person's name, and their city and state. Their name is used as a hyperlink to a third page that will display their transcript, based on the only unique data available, their Social Security Number (SSN).
The problem is that by using the hyperlink and passing the SSN, the SSN shows up as part of the URL
(as in details.asp?KeyID="SSN"
. The customer is concerned with privacy issues, so I am looking for a way to either eliminate the SSN from the URL or find an alternative to the hyperlink.
I have tried making the table part of a form and then using the onclick event for the hyperlink to run a javascript that submits the form, but the SSN value is not available on the next page. I have tried passing the SSN as a session variable, but still got the same results.
Any help would be greatly appreciated.
I took over the maintenance of an existing Intranet site for the government and am running into an issue with the pages involved with displaying a student's transcript.
There is a form that allows users to input information about the person they wish to find and then sends the info. to another page that searches two databases (FoxPro and SQL Server), finds any matching records, and displays the person's name, and their city and state. Their name is used as a hyperlink to a third page that will display their transcript, based on the only unique data available, their Social Security Number (SSN).
The problem is that by using the hyperlink and passing the SSN, the SSN shows up as part of the URL
(as in details.asp?KeyID="SSN"
I have tried making the table part of a form and then using the onclick event for the hyperlink to run a javascript that submits the form, but the SSN value is not available on the next page. I have tried passing the SSN as a session variable, but still got the same results.
Any help would be greatly appreciated.