In our web, we use alias for document names. We look into a view to find the alias and then we display it.
So, the url will look like:
http://site/database.nsf/alias/mypage
Combining web analytics tools, you are supposed to pass a webtrends tag in the url.
On a page, I have 3 different links leading to the same target I must pass a WT.svl=link in the URL.
So I create a few links…
Link1(txt):http://site/database.nsf/alias/mypage?WT.svl=link1
Link2(img):http://site/database.nsf/alias/mypage?WT.svl=link2
Link3(ico):http://site/database.nsf/alias/mypage?WT.svl=link1
My quesiton is… what would be the way to create this? As I can’t have ANYTHING in the url… as it will generate a 404-error page.
OK: http://site/database.nsf/alias/mypage?
Not OK: http://site/database.nsf/alias/mypage??WT.svl=link2
any ideas on HOW to pass arguments along?