This topic is locked

pass a search parameter to a link on a list page

7/17/2008 11:12:35 AM
ASPRunnerPro General questions
author

Hi,
I display the ASP in a CRM system that calls the ASP parametrized. The link looks like...
"http://localhost:8080/gs%20frachtlogistik/v_Anzahl_list.asp?a=search&value=1&SearchFor=<cuid>&SearchOption=Contains&SearchField=contact_id";
In the <cuid> tag the CRM system delivers the customer id. So only the data that belongs to this specific customer will be displayed. The problem now is, that when I click on a link on the ASP that points to another table no parameter is passed to it. As a result all data in the table will be displayed, not only the data that belongs to this customer.
Is there any chance to pass this search parameter to the the other links?
Alexander

3817 7/22/2008

Hi,
I'm trying an other approach. I got a javascript function to get the actual id of the current user:
function GetContactId()

{

soApplication = window.external;

if (soApplication)

{

GetContactId = soApplication.CurrentContact.Identity;

}

else

{

alert('Unable to connect to SuperOffice application');

}

}
How can I access this information in a click event when I put this code to jsfunction.js
Alexander