Suppose VIEW has this variable
@{
ViewBag.Title = "carganuevamente";
int ventaid = (Model.Venta == null ? 0 : Model.Venta.id);
}
then you open a partial view
@Html.Partial("selectcliente", Model.ListadoClientes);
how can I updata this variable since my partialview?