views:

54

answers:

1

Hi,

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

+2  A: 

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.

Doug Ferguson
So if I understood well, getting rid of # is almost impossible?
Key
Yes. I think that the # is essential for Silverlight navigation.
Doug Ferguson