Advertisement
Guest User

Untitled

a guest
Jan 14th, 2011
607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. [System.Web.Services.WebMethod()]
  2. public static JsonResult SaveNewComment(string tagId, string samplingConcern, string analysisConcern, string initialThoughts)
  3. {
  4.  
  5. Comment = this.GetComment(tagId);
  6.  
  7. JsonResult j = new JsonResult();
  8. j.Data = Comment.Id.ToString();
  9.  
  10. return JsonResult(j);
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement