Parameterized URL

  • Hi All,

    Can someone help me with the issue below:

    I have a parameterized URL which I normally call from a report. The report works as follows:

    When the report is initially run, it opens a parameter box where you have to insert the batch ID. After inserting the batch ID and then viewing the report, the report will now display list of Product IDs associated with that batch.

    The issue is that I want the product ID to open in a new tab whenever I click on a particular product. I know it is something that has to do with h ref so can someone help me to construct the below link to include the h ref as I am stuck.

    "https://portal.ese.ed.uk/Classes/ViewProductHistory.aspx?Class=" & Fields!Batch_ID.Value & "&Product=" & Fields!Product_ID.Value

  • it's not the url itself, it's the target attribute of the a href tag that determines wether it replaces the current palce, or opens a named window or a new window no matter how many times the link is clicked:

    <a href="" target="_blank"> Linktext</a>

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Could you help me put that into the URL expression. The target that needs to open in a new tab is the Product ID

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply