добавить свойство name к тегам, чтобы сервер мог получить к ним доступ
<input name="Name1" type="text" class="radius2" />
<input type="button" value="Place bid" class="bid-btn" />
, тогда при отправке вашего действия должно быть что-то вроде этого
public ActionResult SubmitAction(string name1)
{
return View("ViewName" , /* the model here */ )
}