Guest User

Untitled

a guest
Jul 15th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $.ajax({
  2. type: "get",
  3. url: "/Post/Reply/" + postId,
  4. success: function (data) {
  5. var html= $(data);
  6. $('#popup_name').append(html);
  7. },
  8. dataType: "html"
  9. });
  10.  
  11. public ActionResult Reply(int postId)
  12. {
  13. return PartialView("WritePostUserControl", new ReplyPostModel(postId));
  14. }
Add Comment
Please, Sign In to add comment