strohtm
Posts: 13
|
| Posted: 01/17/2005, 7:06 AM |
|
How can I make a hyperlink to anouther application?
My database contains an ID field of a record in anouther application.
I have created a link with the control source type = Database Column and Control Source = FilenetID.
The Href Type = Page and the Href Source = http://ledr.libbey.com/idmws/doccontent.dll?library=fnrepo^crpdb01&id=
I put a link paramater of FileNetID in as part of the Href Source property.
The url ends up as http://ledr.libbey.com/idmws/doccontent.dll?library=fnrepo^crpdb01&id=?FileNetID=003746924
The parameter name of FileNetID is put in the url where I don't want it.
How can I get my url to look like...
http://ledr.libbey.com/idmws/doccontent.dll?library=fnrepo^crpdb01&id=003746924

How can I combine the fixed portion of the url and the id from the database?
|
 |
 |
matheus
Posts: 386
|
| Posted: 01/17/2005, 9:49 AM |
|
Take off the id parameter in the HrefType, and change de name of the LinkParameter FileNetID to id.
I think it's this.
_________________
Matheus Trevizan
Dynamix Software Ltda.
Blumenau SC Brasil
www.dynamix.com.br |
 |
 |
strohtm
Posts: 13
|
| Posted: 01/17/2005, 9:55 AM |
|
I have since added custom code to the show event of the link.
form.link.page ="http://ledr.libbey.com/idmws/doccontent.dll?library=fnrepo^crpdb01&id=" & form.FileNetID.value
This will work better.
If I need to add to the start or the end of the url I can just modify the string in this code.
I was triing to avoid code.
|
 |
 |