<%@ Page Language="VB" AutoEventWireup="false" CodeFile="HTMLGenericDemo1.aspx.vb" Inherits="HTMLGenericDemo1_aspx" %>

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

    <title>HTMLGeneric Control using the body tag</title>

</head>

<body id="BodyID" runat="server">

    <form id="form1" runat="server">

    This Demo illustrates the use of HTMLGeneric Control.<p>

   

    Select a background color for this page:<p>

   

    <select id="PageColor" runat="server">

    <option value="#ffffff">White</option>

    <option value="#ff0000">Red</option>

    <option value="#bfbfbf">Silver</option>

    <option value="#ffff10">Yellow</option>

    </select>

    <p>

    <input type="Submit" runat="server" id="submit"

    value="Change background Color"

    onserverclick="ChangeButton_Click" />

    </form>

</body>

</html>