Data Binding ASP.Net Tutorial

<%@Page debug="true"%>

DateTime theTime;
protected void Page_Load(object o, EventArgs e) {
    theTime = DateTime.Now;
    Page.DataBind();
}

The time is: <%# theTime %>