我有一个在页面之间传递数据的ajax方法...我需要在检索结束时设置一个html文本框值。
我试图这样做......它给出了错误:
//Err : cant set static value to non static member
我只看到返回静态字符串的示例......但没有其他示例
这是我的ajax方法:
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: "WebForm1.aspx/GetData",
data: JSON.stringify({ cc: cc }),
dataType: "json",
async: false,
success: function () {
},
});
这是收到结束时的网络方法:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static void GetData(tbl1 cc)
{
//Getting data in cc
//Not able to set value to textbox ..
//Err : cant set static value to non static method
}
如何从CodeBehing(WebMethod)或在客户端End设置简单的Html输入文本框值。我搜索了很多..但是找不到相关的解决方案..我找到的更多帖子是关于那个不能& #34;在WebMethod中获取数据"我建议尝试一个解决方案尝试Request.Form [] ......但它也无法正常工作..
有些代码很复杂..是否可以从WebMethod检索数据到html控件?
请建议