I am creating an MVC app where the user can add items to their cart. They can also make partial payments on certain items so I have a TextBox for them to specify how much they w
you might try doing an ajax call
$('.Link').on('click', function(){
$.ajax({
url: "@(Url.Action("AddAssignedFee", "Controller")",
type: "POST",
data: { textValue: $('.PaymentAmount').val(), data2: 'data2' }
cache: false,
async: true,
success: function (result) {
$(".Content").html(result);
}
});
});
Hopefully this helps