Hi all here is my aspx page
<body>
<% Html.BeginForm("AssignWork", "Project", FormMethod.Post); %>
<form action="AssignWork.aspx" method="post"></form>
<%:Html.ValidationSummary(true)%>
<div>
<div></div><div style="margin:62px 0 0 203px;"><a style="color:Orange;">Projects : </a><%:Html.DropDownList("Projects")%></div>
<fieldset style="color:Orange;">
<legend>Employees</legend>
<% foreach (var item in Model)
{ %>
<div>
<%:Html.CheckBox("EmployeId",new { value=item.EmployeeName})%>
<%:Html.LabelForModel(item.EmployeeName)%>
</div>
<%} %>
<p>
</p>
</fieldset>
<input type="button" value="Assign" name="Assign" />
</div>
<% Html.EndForm(); %>
</body>
And here is my problem that when I click on Assign button its not going to my post method in my control. I am showing this page in a popup window. Can any one tell me where did I do wrong. Thank you.