7 | $.proxies.person.getallpeople() 8 | .done(function(people) { 9 | //print result 10 | }) 11 | .fail(function (error) { 12 | //print error response 13 | }); 14 |15 | Click to run 16 | 17 | 18 | @section scripts { 19 | 35 | } -------------------------------------------------------------------------------- /Samples/ProxyApi.Sample/Views/Home/OtherPage.cshtml: -------------------------------------------------------------------------------- 1 |
2 | I am a partial view! 3 |
-------------------------------------------------------------------------------- /Samples/ProxyApi.Sample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model System.Web.Mvc.HandleErrorInfo 2 | 3 | @{ 4 | ViewBag.Title = "Error"; 5 | } 6 | 7 | 8 |@Html.ActionLink("Samples", "Index", "Home")
16 |