< %@ Page Language="C#" % >< script runat="server" >void Page_Load() {// create variables string strCarType1, strCarType2, strCarType3;// fill variables strCarType1 = "Buick"; strCarType2 = "Cadillac"; strCarType3 = "Pontiac";// read variables if (strCarType1 != null) { lblOut.Text = strCarType1 + " " ; lblOut.Text += strCarType2 + " " ; lblOut.Text += strCarType3; } //end if (strCarType1 != null) } //end void Page_Load() < /script >< html > < head > head > < body > < form runat="server" > < asp:Label runat="server" ID="lblOut"/ >< br/ > < /body >< /html >