Diemnibigehuh
New Member
I have a view that displays a link of vendors, with a link to each vendor detail page\[code\]@foreach (var vendor in Model.Vendors){ <li> <a href="http://stackoverflow.com/Vendors/@(vendor.Name)">@vendor.Name</a> </li>}\[/code\]One particular vendor is named "ABC Sales & Services", so the link to their detail page is \[code\]/Vendors/ABC Sales & Services\[/code\]. When I navigate to that url, I get this error:\[quote\] A potentially dangerous Request.Path value was detected from the client (&).\[/quote\]Is there a way to get around this?