Possible Duplicate:
How to get Url Hash (#) from server side
I have hash parameters in url
Can any body please help me to how to read Hash parameters value from Url using C#?
www.example.com/default.aspx#!type=1
How to read value of type
?
Possible Duplicate:
How to get Url Hash (#) from server side
I have hash parameters in url
Can any body please help me to how to read Hash parameters value from Url using C#?
www.example.com/default.aspx#!type=1
How to read value of type
?
The hash part is only used and available on the client. You cannot read it from ASP.NET / C#.
#
).&
)=
) sign.You will then have all the parameters and values.
If this was asking about a ASP.net application, you want to use
Request.QueryString["type"]
to get the value.