如何从asp.net中的web用户控件调用web服务
本文关键字:web 用户 控件 调用 服务 中的 asp net | 更新日期: 2023-09-27 18:04:55
我有一个web用户控件,我想从它调用web服务。我的主要动机是什么?
1。我正在为高级搜索创建一个网络用户控件,为此,我正在动态地将绑定字段和按钮[编辑,删除]添加到gridview。2. 现在我使用ajax去编辑和删除(有特定的理由去这种方法,因为我已经提到,我正在动态地添加边界字段和按钮,首先我清除网格的所有列,然后添加新的。现在,如果按钮的点击触发,那么它的post返回页面,这使得按钮将从网格中消失,所以我想使用Json)
这是我的网格代码::
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CellPadding="4"
BorderWidth="1px" ForeColor="#333333" GridLines="None">
<AlternatingRowStyle BackColor="White" />
<FooterStyle BackColor="#990000" ForeColor="White" Font-Bold="True" />
<HeaderStyle Height="30px" BackColor="#990000" Font-Bold="True" ForeColor="White" />
<PagerStyle ForeColor="#333333" HorizontalAlign="Center" BackColor="#E2E2E2" />
<RowStyle CssClass="test" BackColor="#E2E2E2" Height="25px" BorderWidth="1px" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2E2E2" Font-Bold="True" ForeColor="Navy" />
<SortedAscendingCellStyle BackColor="#FDF5AC" />
<SortedAscendingHeaderStyle BackColor="#4D0000" />
<SortedDescendingCellStyle BackColor="#FCF6C0" />
<SortedDescendingHeaderStyle BackColor="#820000" />
</asp:GridView>
下面是Json调用
的代码$('.DeleteButton').live('click', function () {
alert('hellllo');
$.ajax({
url: '<%=ResolveUrl("~/Control/WebService/WebService.asmx/HelloWorld") %>',
data: "{ }",
dataType: "json",
type: "POST",
contentType: "application/json;charset=utf-8",
success: function () {
alert('hi;');
},
error: function () {
alert('Record could not be deleted. 'n Please try again later. hye');
},
failure: function () {
alert('Record could not be deleted. 'n Please try again later. hello');
}
});
});
我总是得到以下错误:
500内部错误请帮助我摆脱这个问题,我被困在它从过去的2天。
如果您使用chrome浏览器进行调试,请执行以下操作:
- 打开开发人员(如果名字错了请纠正)面板按F12
- 设置选项卡为Network选项卡 调用方法
如果发生内部服务器错误500,那么您将在底部的某个地方发现一条红色字体的记录。您可以使用其中声明的URL进行调试。这里的信息还提供了响应信息。
此外,您可以尝试使用visual studio调试激活的web服务来调试服务。然后尝试调用webservice,看看它是否捕捉到任何异常。
500内部错误-从这个我可以猜到是:
不要使用
var html = '<%=ResolveUrl("~/Control/WebService/WebService.asmx/HelloWorld") %>';
而不是使用:
var html= '<%=ResolveUrl("full path /Control/WebService/WebService.asmx/HelloWorld") %>';
或
var html = '<%=ResolveUrl("../../Control/WebService/WebService.asmx/HelloWorld") %>';
我已经为我解决了如下问题:
Jquery代码为:
$(document).ready(function () {
$('.DeleteButton').live('click', function (e) {
var td = $(this).parent('td').parent('tr');
if (confirm('Do you want to delete this record?')) {
var Index = $(this).attr('id');
var pos = Index.indexOf("_");
var position = Index.indexOf("_");
while (pos > -1) {
pos = Index.indexOf("_", pos + 1);
if (pos > -1) {
position = pos;
}
}
Index = Index.substr(position + 1);
var Id = $(this).attr('alt');
var TableName = $('[id$=hdfTableName]').val();
var PrimaryKey = $('[id$=hdfPrimaryKey]').val();
$.ajax({
type: "POST",
url: "Search.aspx/DeleteRecord",
data: "{ 'Id': '" + Id + "','TableName':'" + TableName + "','PrimaryKey':'" + PrimaryKey + "' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
if (msg.d == '1') {
td.hide();
$('.lblMessage').addClass("SuccessMessage");
$('.lblMessage').text('Record is deleted sucessfuly.');
$('.lblMessage').delay('5000').fadeOut('10000');
} else {
$('.lblMessage').addClass("ErrorMessage");
$('.lblMessage').text('There is some error, while deleting the record.');
$('.lblMessage').delay('5000').fadeOut('10000');
}
}
});
}
});
$('.EditButton').live('click', function (e) {
var Id = $(this).attr('alt');
window.location.href = 'Default.aspx?id=' + Id + '';
});
});
并且我已经从下面的页面调用了Web方法:
[WebMethod]
public static string DeleteRecord(string Id, string TableName, string PrimaryKey)
{
String result = "";
try
{
Id = "'" + Id + "'";
clsSearch objSearch = new clsSearch();
result = objSearch.DeleteRecord(TableName, PrimaryKey, Id);
result = "1";
}
catch (Exception ex)
{
result = ex.Message;
}
return result;
}
顺便感谢您的回复.....