I need to retrieve the value of a query string for a department using .net c# but as some of the department names include an '&' as soon as it is read it stops after the &
www.example.co.uk/default.aspx?dept=IM&T
Label1.Text = "The Department is - " + Request.QueryString["dept"];
The result is...
The Department is - IM
How can I get this to read the query string as IM&T
?