using System;
using System.Web.UI;
using System.Web.UI.WebControls;
public class MoviePage:Page
{
protected void WriteDate()
{
Response.Write(DateTime.Now.ToString());
}
protected void WriteMovies()
{
Response.Write("<P>The Glass Ghost (R) 2:05 pm, 4:25 pm, 7:30 pm</P>");
Response.Write("<P>Untamed Harmony (PG-13) 2:50 pm, 3:25 pm, " +
"6:32 pm</P>");
Response.Write("<P>Foreverrr Nowhere (PG) 3:10 pm, 8:32 pm</P>");
Response.Write("<P>Without Justice.... (R) 11:45 pm, 6:15 pm</P>");
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.