<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OrdinaryHtml.aspx.cs" Inherits="OrdinaryHtml" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Ordinary HTML</title>
</head>
<body>
<form id="form1" runat="server" method="POST">
<div>
<table>
<tr><td><a id="ancNoUC" href="/NUnitWebTestPages/Default.aspx">Default Page</a></td></tr>
<tr><td> </td></tr>
<tr><td><input type="button" id="btnTest" name="btnTest" value="Click Me" onclick="javascript:document.forms[0].submit()" /></td></tr>
<tr><td id="tdOutput"><%=m_output%></td></tr>
<tr><td><img id="img" runat="server" /></td></tr>
<tr><td><input type="checkbox" id="chk" name="chk" checked /></td></tr>
<tr><td><input type="hidden" id="hdn" name="hdn" value="<%=m_hiddenVal%>" /></td></tr>
<tr><td><input type="password" id="pwd" name="pwd" /></td></tr>
<tr><td><input type="radio" id="rdo" name="rdo" /></td></tr>
<tr><td><input type="reset" id="reset" name="reset" /></td></tr>
<tr><td><input type="submit" id="sub" name="sub" /></td></tr>
<tr><td><input type="text" id="txt" name="txt" /></td></tr>
<tr><td><select id="slct" name="slct">
<option id="opt1" value="1">One</option>
<option id="opt2" value="2">Two</option>
</select></td></tr>
<tr id="trTest"><td>Row with an ID</td></tr>
<tr><td><textarea id="txtarea" name="txtarea">This is the content</textarea></td></tr>
</table>
</div>
</form>
</body>
</html>