I need some RadioButtons that grouped together in one of view page at mvc project this is a part of my view code:
<body>
<script src="<%: Url.Content("~/Scripts/jquery-1.5.1.min.js") %>"
<% using (Html.BeginForm()) { %>
<%: Html.ValidationSummary(true) %>
<fieldset>
<legend>PhoneNumber</legend>
<div class="Radio" runat="server">
<asp:RadioButton runat="server" GroupName="MyG" ID="RadioButton1" Text="RadioText1" />
</div>
<div class="editor-label">
<%: Html.LabelFor(model => model.Tel1) %>
</div>
......
<div class="Radio" runat="server">
<asp:RadioButton runat="server" GroupName="MyG" ID="RadioButton2" Text="RadioText2" />
</div>
<div class="editor-label">
<%: Html.LabelFor(model => model.Tel3) %>
</div>
.......
when define RadioButtons as above there is an error:
System.Web.HttpException: Control 'RadioButton1' of type 'RadioButton' must be placed inside a form tag with runat=server.
How can I add runat = server to Html.BeginForm() or any other way to add grouped RadioButtons to view of mvc??
How about Razor view?? is there any way to define grouped RadioButtons in RazorView?