Reputation: 1
I am trying to create a silverlght navigation application and it is adding this "#" sign by default in the URL. I want to use asp .net routing and somehow get rid of this "#" sign. Is this possible ? How ? Any sample or right direction will be really helpful.
Thanks
Upvotes: 0
Views: 144
Reputation: 2618
Silverlight navigation uses the bookmark anchor feature to stay on the same host page.
Without the "#" your host page would be reloaded and you would lose all of your in-memory application state.
Use of asp.net routing would be distinct from using Silverlight navigation.
Upvotes: 2