On my intranet I have set up a search function with Zoom.
There is one page which holds the basic page template and then the rest of the page is built on the fly in ASP depending on the value of a Request.QueryString
For example
http://bwbnet2/opm/index.asp?cbofile=chapters/3.htm
Would load the main template with the menus, banner, search form etc then insert the text of chapter 3. Therefore to make the search function work properly I have to make the base URL
http://bwbnet2/opm/index.asp?cbofile=
However when I do this the link that is produced in the search results is
http://bwbnet2/opm/index.asp?cbofile...ighlight=email
That is, it's putting a / after the base url which is having a knock on effect to the page that puts everything together.
What is the best way round this?
Thanks very much
Ed
There is one page which holds the basic page template and then the rest of the page is built on the fly in ASP depending on the value of a Request.QueryString
For example
http://bwbnet2/opm/index.asp?cbofile=chapters/3.htm
Would load the main template with the menus, banner, search form etc then insert the text of chapter 3. Therefore to make the search function work properly I have to make the base URL
http://bwbnet2/opm/index.asp?cbofile=
However when I do this the link that is produced in the search results is
http://bwbnet2/opm/index.asp?cbofile...ighlight=email
That is, it's putting a / after the base url which is having a knock on effect to the page that puts everything together.
What is the best way round this?
Thanks very much
Ed
Comment