我想使用asp.net用戶控件AJAX,如何在asp.net用戶控件中使用jQuery ajax?
$.ajax({
type: "POST",
url: "*TCSection.ascx/InsertTCSection",
data: "{id:'" + id + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
var URL = msg.d;
alert(URL);
});
的.cs代碼
[WebMethod]
public static string InsertTCSection(string id)
{
string result = "deneme";
return result;
}
你得到一些錯誤? – 2013-02-26 11:42:21
我加入的服務器端功能斷點,它是打不 – altandogan 2013-02-26 11:46:01
你不能調用一個方法裏面保存的用戶控件通過jQuery的,因此在運行時有作爲的.ascx沒有這樣的資源,它合併到它保持 – 2013-02-26 11:52:17