127.

Given the following fragment of an ASPX file:
<form runat=”server” method=”post” id=”form1”>
<asp:TextBox ID=”txtName” Text=”Builder.Com” EnableViewState=”false”/>
<br>
<asp:TextBox ID=”txtName2” Text=”” EnableViewState=”false”/>
</form>

and the following fragments of the ASPX file’s codebehind file (in C#):
protected TextBox txtName = new TextBox();
protected TextBox txtName2 = new TextBox();

// Assume this is properly wired as the Load event handler.
private void Page_Load(object source, EventArgs args)
{
txtName2.Text = txtName.Text;
}

which of the following is true?

Missing "runat" attribute