Assuming your view is strongly typed to a view model like this
public class CreateProduct
{
public IEnumerable<SelectListItem> Categories { set; get; }
public int SelectedCategory { set; get; }
}
And in your GET action method, you are creating an object of this view model,...