I have integrated a Silverlight Navigation Application in an ASP.NET MVC web. However when Silverlight calls for its default page, say, IndexPage
ASP.NET MVC displays the route as:
http://localhost/#/IndexPage
I have tried to get ASP.NET MVC to respond to this route:
http://localhost/#IndexPage
but I am unable to find a configuration that works with this. Does ASP.NET MVC rout开发者_如何学Ces respond to hashes in general?
Silverlight's navigation system and ASP.NET MVC routes are completely separate here. The hash is a client-only thing and it can't be expected for ASP to reliably get that info.
精彩评论