protected void Page_Load(object sender, EventArgs e) { SherlockLib.SherlockQuotes quotes = new SherlockLib.SherlockQuotes(Server.MapPath("./sherlock-holmes.xml")); SherlockLib.Quotation quote = quotes.GetRandomQuote(); Response.Write("<b>" + quote.Source + "</b> (<i>" + quote.Date + "</i>)"); Response.Write("<blockquote>" + quote.QuotationText + "</blockquote>"); }