March 23, 2005 at 7:49 pm
I know this must be easy, and I've read in multiple sources that this is possible, so how do I append a field value to an http URL. I've tried quotes, ampersand, nothing, greater than less thans. I can't seem to get it.
March 24, 2005 at 6:37 am
What are you expecting the outcome to be. I am not sure exactly what ou are looking for but if you are talking about building a querystring with values set to variable names then you must first have a
?
before the first item and an
&
between each further.
Ex.
http://.../post.aspx?forumid=150&messageid=169729&q=169729
March 24, 2005 at 10:07 am
I'm trying to appending a dynamic value (field from a recordset) to the end of a URL string. If you look at what you have, it would be similar to creating an fx that ended "...&q=Fields!strJobNo.Value" where strJobNo is the value in the field I'm setting the Jump to URL expression on. What characters do I need to use to properly concatenate that value on an otherwise fixed URL string?
March 25, 2005 at 2:03 am
After some trial and error, I have determined the answer is
="http://...." & Fields!<fieldname>.Value
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply