Ajax ASP.Net Tutorial

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Collections.Generic" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    protected void Page_Load(object sender, EventArgs e)
    {
        List quotes = new List();
        quotes.Add("A");
        quotes.Add("B");
        quotes.Add("C");
        Random rnd = new Random();
        lblQuote.Text = quotes[rnd.Next(quotes.Count)];
    }



    Timer Quote


    
    

    
    
    Page Time: <%= DateTime.Now.ToString("T") %>
    

    Quote