It doesnt work, regardless of what parameter i add it gives this exception:
System.Xml.XmlException: '=' is an unexpected token. The expected token is ';'. Line 35, position 131.
The line its refering to is the line where imagegen is used, the one above.
Im at total loss right now. I tought i should refer to a class in the imagegen config file instead, but that doesnt work either, just parameters in general doesnt work. I might have overseen something...
Awesome, it works! Thank you very much :) I did see the "&" while searching for a solution but i didnt know exactly what they did, so thank again as this will most likely save me from some headaches in the future.
Imagegen query string parameters doesnt work
Hope the title isnt misleading, but didnt know how else ot explain it.
So i have this:
the source is a large picture that will be resized to a thumbnail and used a link, the code above works but it isnt resized so in comes imagegen:
And that works as well, but as you can see it isnt resizing anything, but when i do this:
It doesnt work, regardless of what parameter i add it gives this exception:
The line its refering to is the line where imagegen is used, the one above.
Im at total loss right now. I tought i should refer to a class in the imagegen config file instead, but that doesnt work either, just parameters in general doesnt work. I might have overseen something...
Sorry for double posting, but it wont let me edit my post for some reason, but the second code snippet says "
and the third says
the one with "/umbraco/ImageGen" is obviously wrong but i forgot to edit it after pasting it here.
The problem is that the '&' character is a special character in XSLT so you need to escape it to &
Try this...
cheers,
doug.
Awesome, it works! Thank you very much :) I did see the "&" while searching for a solution but i didnt know exactly what they did, so thank again as this will most likely save me from some headaches in the future.
is working on a reply...