시나리오 : form 페이지에서 submit될 때 비동기로 액션을 호출한다. 이때 사용자로부터 입력을 못받게 회색 레이어로 덮어준다. 액션에서는 json 객체를 반환한다. 1. 액션에서 익명객체 생성하여 Json으로 반환 public class AjaxTextController : Controller { ... [HttpPost] public ActionResult SubmitForm(FormCollection fc) { string p1 = fc["p1"] == null ? "" : fc["p1"].ToString(); string p2 = fc["p2"] == null ? "" : fc["p2"].ToString(); for (int i = 0; i < 10; i++) { Thread.Sleep(10..