반응형 post1 JQuery 사용해서 HTML에서 Controller Actions 호출하는 방법 MVC 코드를 작성하다보면 어쩔 수 없이 JQuery를 사용하게 되는데 이때 유용한 코드를 살펴보자. $.get() $.post() $.get() 매소드 a. 인자를 전달하지 않는 경우 Controller public string SaveEmployeeRecord() { string res = "this is return value"; // do here some operation return res; } View $.get("/Home/SaveEmployeeRecord",null, function (data) { alert(data); }); b. 인자를 전달하는 경우 Controller public string SaveEmployeeRecord(string name) { string res = nam.. 2023. 1. 26. 이전 1 다음