本篇內(nèi)容介紹了“Asp.net怎么實(shí)現(xiàn)無刷新調(diào)用后臺(tái)實(shí)體類數(shù)據(jù)并以Json格式返回”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)專注于豐林網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供豐林營銷型網(wǎng)站建設(shè),豐林網(wǎng)站制作、豐林網(wǎng)頁設(shè)計(jì)、豐林網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造豐林網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供豐林網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。新建一般處理程序
public class Temp { public int Index { get; set; } public string Description { get; set; } public string ImagePath { get; set; } public DateTime MyDate { get; set; } } //數(shù)據(jù)源 List<Temp> listTemp = new List<Temp>() { new Temp(){ Index=1,ImagePath="Desert.jpg", Description="圖片1",MyDate=DateTime.Now}, new Temp(){Index=2,ImagePath="Chrysanthemum.jpg", Description="圖片2",MyDate=DateTime.Now}, new Temp(){Index=3,ImagePath="Penguins.jpg", Description="圖片3",MyDate=DateTime.Now}, new Temp(){Index=4,ImagePath="Jellyfish.jpg", Description="圖片4",MyDate=DateTime.Now}, new Temp(){Index=5,ImagePath="Tulips.jpg", Description="圖片5",MyDate=DateTime.Now} }; public void ProcessRequest(HttpContext context) { string index = context.Request["Index"]; string jsonStr = string.Empty; foreach (var item in listTemp) { if (item.Index.ToString() == index) { JavaScriptSerializer serializer = new JavaScriptSerializer(); jsonStr = serializer.Serialize(item); //序列化為json格式 break; } } context.Response.Write(jsonStr); }
前臺(tái)JS代碼
$.getJSON("imageChange.ashx", { Index: i - 1 }, function (result) { $("#<%=lblDescription.ClientID %>").text(result.Description); $("#<%=Image1.ClientID %>").attr("src", path + result.ImagePath.substr(result.ImagePath.lastIndexOf('/') + 1)); var d = eval("new " + result.MyDate.replace(/\//g, "")); $("#<%=lblDate.ClientID %>").text(Todate(d.ToLocalTime().toString())); });
“Asp.net怎么實(shí)現(xiàn)無刷新調(diào)用后臺(tái)實(shí)體類數(shù)據(jù)并以Json格式返回”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
網(wǎng)站名稱:Asp.net怎么實(shí)現(xiàn)無刷新調(diào)用后臺(tái)實(shí)體類數(shù)據(jù)并以Json格式返回-創(chuàng)新互聯(lián)
標(biāo)題路徑:http://m.rwnh.cn/article42/dsdsec.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開發(fā)、品牌網(wǎng)站制作、網(wǎng)站策劃、外貿(mào)建站、網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容