當(dāng)我們?cè)陂_發(fā)Web應(yīng)用程序中使用JQuery和Ajax異步調(diào)用來(lái)實(shí)現(xiàn)很多功能時(shí),不僅提高了程序的性能,而且給用戶一個(gè)更好的交互式界面操作體驗(yàn)。接下來(lái)我們依舊用簡(jiǎn)單的實(shí)例來(lái)學(xué)習(xí)下它們的應(yīng)用。
創(chuàng)建一個(gè)ASP.NET MVC Web Application
在Visual Studio中創(chuàng)建ASP.NET Web Application應(yīng)用程序,在向?qū)У南乱粋€(gè)窗口中選擇空的模板。
創(chuàng)建Model
接著我們?cè)?strong style="margin: 0px; padding: 0px;">Models文件夾下創(chuàng)建一個(gè)Product類,用來(lái)傳遞數(shù)據(jù)。
public class Product { public int ProductID { get; set; } public string ProductName { get; set; } public decimal Price { get; set; } public int Count { get; set; } public string Description { get; set; } }
網(wǎng)友評(píng)論