0

I want to create a comment box in MVC. It should convert the text string from text box into label field and display on screen. We will be doing partial posts, as we don't want entire page to be posted back to server.

user43553
  • 65
  • 5
  • 14

1 Answers1

0

Use ajax callbacks (for example, $.ajax, https://api.jquery.com/jQuery.ajax/) instead of posts. Use javascript to do that.

Alexey Ripenko
  • 139
  • 1
  • 2
  • 7