Hey
i have a advanced url issue in DNN 7
i have a custom module that loops throgu data and depending what is passed in the url bring back different results, so all on one page
/catalogue ... so the same code is running each time nothing extra based on url, just different data returned.
Link1:
<a href="catalogue.aspx?i=6500&c=7051&n=Wirework" class="catalogue-link">Wirework</a>
give me this is the URL bar which is what i am looking for in order for it to work correctly with the query strings seperated by & not /
/catalogue?i=6500&c=7051&n=Wirework
Link2: (on the same page, right next to the other one)
<a href="catalogue.aspx?i=6459&c=7051&n=Accessories" class="catalogue-link">Kitchen Accessories</a>
gives me this in the URL bar with everything seperated by slash (this is the same module so im lost)
/catalogue/i/6459/c/7051/n/Accessories
in web.config i have the url format set to advanced
<add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" urlFormat="advanced" />
This wasn't happening on Friday and i have no idea what has changed.
Any ideas?
Thanks