User375242171 posted
I have a report which consists of fields:
Productid GenericName BrandName Cost CurrentSP Margin
34234 sdfgfd sgsdfgdg
This report has been created in Report Builder 3. I want a user to be able to click on the ProductID in the report and then be transferred to the corresponding product details page within a .aspx page. I have attempted to put this url within the Action field
in Text Box Properties.
http://phoenix/Webpages/Products/ProductsSummary.aspx?prodid=
However when i click the Hyperlink on the report its taking me to a listed page with the products rather than the specified page:
e.g.
http://phoenix/Webpages/Products/ProductsSummary.aspx?prodid=554
My collegue has developed the asp.net page. He has tried to use the code below to enable this tow work.but its just doing the same thing.
If Session("productUniqueIdValue") <> "" Then
hiddenProductUniqueIdLabel.Text = Session("productUniqueIdValue")
Else
hiddenProductUniqueIdLabel.Text = Request.QueryString("produniqueid")
End If
Any idea to this solution. Thanks for your help in advance.
Regards