I'm attempting to filter the points in a map based on querystring variable productid
My custom query:
SELECT * FROM [dbo].[Map_Points]
where guid = @productid
My Query Variable:
Type: <QueryString>
Source: 2
Target: @productid
Left: ' (single quote)
Right: ' (single quote)
Empty value:
Security: Yes
My URL call looks like this:
http://localhost:2079/DNN/AboutUs/ContactUs/tabid/54/productid/3/Default.aspx
http://localhost:2079/DNN/AboutUs/ContactUs/tabid/54/productid/4/Default.aspx
These are existing ids and work when I run them in a query editor window or I hardcode the value. It's the map that is failing to update. I've been at it for 2 days now. Please help.