So I have this code in a javascript function in my ASP.NET MVC application...
jQuery("#SomeResultsGrid").jqGrid({
url: 'SomeSearch.mvc/SomeSearchResultsGridEventHandler', ...
This loads on my default page and raises just fine (fiddler confirmed). Now, if I go to that default page (via a Html.ActionLink), the url that posts after load now looks like SomeSearch.mvc/SomeSearch.mvc/SomeSearchResultsGridEventHandler. Anyone know why and how I can resolve it?