How to hide href information in the saved page!
Hello:
I am using jsp page which in turn basically has lot of html codes including "href" code. I don't want to disclose href information upon saving that page from the web.
My jsp page href code as follows:
............................................
<small><a href="<%=link%><%="Customer"%>" class="sortdatalink">Customer</a></small>
.............................................
Here "link" and "Customer" is basically a string which consists of URL information.
Output source of saved page as follows:
................................................
<small><a href=ViewCustomerDetails?URLDest=ViewCustomerDetails&targetSrc=MIL_ENGINE&Step=Step_AccessAccountListSorting&AAListID=0&Sponsor=ALL&otherCrit=&SortCol=Customer class="sortdatalink">Customer</a></small>
...........................................
Here "ViewCustomerDetails?URLDest=ViewCustomerDetails&targetSrc=MIL_ENGINE&Step=Step_AccessAccountListSorting&AAListID=0&Sponsor=ALL&otherCrit=&SortCol=Customer" is the URL information, which I don抰 want to disclose.
Any tip抯 is very much appreciated!!!

