is it possible to pass the value of a form element somewhere on the page, to an actionlink as a parameter? eg.
@Html.DropDownList("MyList")
@Html.ActionLink("FooText", "FooMethod", "FooController", dropdownvaluehere)
where in the FooController class
public ActionResult FooMethod(int retrieveddropdownvalue)
{
//do something with retrieved value
}