There must me a more elegant way to build a URL with parameters in .NET then for example
Response.Write("<a href=HeadOfMarketView.aspx"+Session["HOM"] != null ? Session["HOM"]+">Head of Market</a> / ")
I mean the concatenation of strings is a litte bit old school, no?