There are two options here.
- a hidden field within the form, or
- Add it to the route values parameter in the begin form method.
Edit
@Html.Hidden("clubid", ViewBag.Club.id)
or
@using(Html.BeginForm("action", "controller",
new { clubid = @Viewbag.Club.id }, FormMethod.Post, null)