Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
leslieb
Starting Member
23 Posts |
Posted - 2009-02-09 : 17:05:01
|
I am trying to use "jump to URL" to open images of invoices. I was hoping to be able to Load the client number and return the list of invoices for that client (I have done this and it works). I then want to be able to click on the invoice number and view the invoice. The invoice is stored as a TIF file but could be changed if needed.In SSIS I have loaded the following="http://localhost/Images/Parameters!Number.Value" but I get the "The Page cannot be found" error message in the browser window. If I try ="C:\Images\Parameters!Number.Value" nothing happensAny suggestions?  |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-02-09 : 23:20:54
|
seem like what you want is="http://localhost/Images/" + cstr(Parameters!Number.Value) |
 |
|
|
|
|