Two things, why don't you just use a label control in the HTML portion of the aspx file and set the value in the code behind:
label1.Text = Request.QueryString("<value>")
If you absolutely need to do this in the HTML file you need to change your syntax to:
<%=Request.QueryString("<value>") %>
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========