I have an Asp.Net MVC 4 application and I am using the Html ActionLink helper as follows:
@Html.ActionLink("Public", "ClearSearch", new { area = "PropertyListing", controller = "RealEstateTaxParcel"}, new { @class = "access-button" })
In IE 9 the generated html is as follow:
<a class="access-button" href="/AscentWeb/PropertyListing/RealEstateTaxParcel/ClearSearch">Public</a>
But in IE10 the generated html is as follows:
<a class="access-button" href="/AscentWeb/(F(-5ahfuK90o-Rb7YpQXCTW0uuxd3WCIpfmvCNvNfA1ZE1UdhSzqavHg4Nc_hyfRbicx0idwSahX1CRI9G6p3bW5Ud6Q2OfQbq-3kduvCgbBIDEzHvWHuDgauF8qh_xiFJ0))/PropertyListing/RealEstateTaxParcel/ClearSearch">Public</a>
This only occurs on the website that is deployed to IIS. The link is generated just fine in IE10 when I run the site from VS2010. Any thoughts or help would be greatly appreciated.