What are you returning the data into? A dataset, datatable, datareader?
In all of the cases, getting to your data will be something similiar to
Response.Write("<h1>" + Convert.ToString(datatable.rows[0]["FriendlyName"]) + "</h1>");
Response.Write("<h1>" + Convert.ToString(datareader["FriendlyName"]) + "</h1>");
Response.Write("<h1>" + Convert.ToString(dataset.tables[0].rows[0]["FriendlyName"]) + "</h1>");
================================================== =========
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
================================================== =========
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
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========