Ajax代码无法正常工作。

编程入门 行业动态 更新时间:2024-10-14 12:20:39
本文介绍了Ajax代码无法正常工作。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

大家好, 我在c#中有asp网站。 我'使用Ajax从数据库中检索数据。 代码:

< ; script type =text / javascript> 函数GetDescription(a){ alert(a); //下拉项目选择值 $ .ajax({类型:'POST', contentType:application / json; charset-8;, url:' Default.aspx / GetRef', dataType:'json', data:{'id':'+ a +'}, success:function(result){ alert(result); } }); } < / script>

Dropdownlist onchange()

< asp:DropDownList ID =ddlschrunat =serverWidth =80pxonchange =GetDescription(this.value)> < / asp:DropDownList>

Default.aspx / GetRef

[WebMethod] public string GetRef(string id) { DataTable dt = new DataTable(); SqlParameter [] p = new SqlParameter [1]; p [0] = new SqlParameter(@ RefID,Convert.ToInt32(id)); dt = dl.GetDataWithParameters(Sp_WT_GetRef,p); string data = dt.Rows [0] [Description]。ToString()+|+ dt.Rows [0] [PriceInUSD]。ToString(); 返回数据; }

错误

http:// localhost:54576 /AutomobileWebApp/Default.aspx/GetRef无法加载资源:服务器响应状态为500(内部服务器错误) http:// localhost:54576 / resources / demos / style.css无法加载资源:服务器回复状态为404(未找到)

任何人都可以帮助我,我错了... 谢谢

解决方案

.ajax({ type:'POST', contentType:application / json; charset-8;, url:'Default.aspx / GetRef', dataType:'json', data:{'id':' + a +'},成功:函数(结果){ alert(result); } }); } < / script>

Dropdownlist onchange()

< asp:DropDownList ID =ddlschrunat =serverWidth =80pxonchange =GetDescription(this.value)> < / asp:DropDownList>

Default.aspx / GetRef

[WebMethod] public string GetRef(string id) { DataTable dt = new DataTable(); SqlParameter [] p = new SqlParameter [1]; p [0] = new SqlParameter(@ RefID,Convert.ToInt32(id)); dt = dl.GetDataWithParameters(Sp_WT_GetRef,p); string data = dt.Rows [0] [Description]。ToString()+|+ dt.Rows [0] [PriceInUSD]。ToString(); 返回数据; }

错误

http:// localhost:54576 /AutomobileWebApp/Default.aspx/GetRef无法加载资源:服务器响应状态为500(内部服务器错误) http:// localhost:54576 / resources / demos / style.css无法加载资源:服务器回复状态为404(未找到)

任何人都可以帮助我,我错了... 谢谢

确保webmethod是静态的,并使用.d来获得结果。如果你在第一个警告框中得到未定义,那么问题是你的js没有正确读取下拉列表的值。

< asp:DropDownList ID = ddlsch runat = server 宽度 = 80px onchange = GetDescription(this.value) > < asp:ListItem 文字 = 一个 值 = 1 / > < asp:ListItem 文字 = 两个 值 = 2 / &g t; < asp:ListItem 文本 = 三 值 = 3 / > < / asp:DropDownList > < script type = text / javascript > 函数GetDescription(a){警报(a); //下拉项目选择值

.ajax({类型:'POST', contentType:application / json; charset-8;, url:'Default.aspx / GetRef', dataType:'json', data:{'id':'+ a +'},成功:function(result){ alert(result.d); } }); } < / script >

[WebMethod] public static string GetRef( string id) { // 您的实际这里的代码 return id; }

Hi guys, I have asp web site in c#. I'm using Ajax to retrieve data from database. Code:

<script type="text/javascript"> function GetDescription(a) { alert(a); // the dropdown item selected value $.ajax({ type: 'POST', contentType: "application/json; charset-8;", url: 'Default.aspx/GetRef', dataType: 'json', data: "{ 'id':'" + a + "'}", success: function (result) { alert(result); } }); } </script>

Dropdownlist onchange()

<asp:DropDownList ID="ddlsch" runat="server" Width="80px" onchange="GetDescription(this.value)" > </asp:DropDownList>

Default.aspx/GetRef

[WebMethod] public string GetRef(string id) { DataTable dt = new DataTable(); SqlParameter[] p = new SqlParameter[1]; p[0] = new SqlParameter("@RefID", Convert.ToInt32(id)); dt = dl.GetDataWithParameters("Sp_WT_GetRef", p); string data = dt.Rows[0]["Description"].ToString() +"|"+ dt.Rows[0]["PriceInUSD"].ToString(); return data; }

Error

localhost:54576/AutomobileWebApp/Default.aspx/GetRef Failed to load resource: the server responded with a status of 500 (Internal Server Error) localhost:54576/resources/demos/style.css Failed to load resource: the server responded with a status of 404 (Not Found)

Can anyone please help me where i'm wrong... Thanks

解决方案

.ajax({ type: 'POST', contentType: "application/json; charset-8;", url: 'Default.aspx/GetRef', dataType: 'json', data: "{ 'id':'" + a + "'}", success: function (result) { alert(result); } }); } </script>

Dropdownlist onchange()

<asp:DropDownList ID="ddlsch" runat="server" Width="80px" onchange="GetDescription(this.value)" > </asp:DropDownList>

Default.aspx/GetRef

[WebMethod] public string GetRef(string id) { DataTable dt = new DataTable(); SqlParameter[] p = new SqlParameter[1]; p[0] = new SqlParameter("@RefID", Convert.ToInt32(id)); dt = dl.GetDataWithParameters("Sp_WT_GetRef", p); string data = dt.Rows[0]["Description"].ToString() +"|"+ dt.Rows[0]["PriceInUSD"].ToString(); return data; }

Error

localhost:54576/AutomobileWebApp/Default.aspx/GetRef Failed to load resource: the server responded with a status of 500 (Internal Server Error) localhost:54576/resources/demos/style.css Failed to load resource: the server responded with a status of 404 (Not Found)

Can anyone please help me where i'm wrong... Thanks

Make sure the webmethod is static, and use the .d to get the result. If you're getting "undefined" in the first alert box then the problem is that your js isn't reading the value of the dropdown correctly.

<asp:DropDownList ID="ddlsch" runat="server" Width="80px" onchange="GetDescription(this.value)" > <asp:ListItem Text="One" Value="1" /> <asp:ListItem Text="Two" Value="2" /> <asp:ListItem Text="Three" Value="3" /> </asp:DropDownList> <script type="text/javascript"> function GetDescription(a) { alert(a); // the dropdown item selected value

.ajax({ type: 'POST', contentType: "application/json; charset-8;", url: 'Default.aspx/GetRef', dataType: 'json', data: "{ 'id':'" + a + "'}", success: function (result) { alert(result.d); } }); } </script>

[WebMethod] public static string GetRef(string id) { // your actual code here return id; }

更多推荐

Ajax代码无法正常工作。

本文发布于:2023-11-07 23:24:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1567715.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:无法正常   代码   工作   Ajax

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!