using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class MoviePage : System.Web.UI.Page { protected void WriteDate() { this.Response.Write(DateTime.Now.ToString()); } protected void WriteMovies() { this.Response.Write( "
The Man With The Golden Gun 1:05 pm, 3:25 pm, 7:00 pm, 8:55 pm
"); this.Response.Write( "Diamonds Are Forever 12:50 pm, 3:25 pm, 6:55 pm
"); this.Response.Write( "The World Is Not Enough 3:30 pm, 8:35 pm
"); this.Response.Write ("From Russia With Love 12:45 pm, 6:45 pm
"); } }