我有一个页面创建了一个包含XML数据的表。 在下面的代码中,我编写了一个从SQL创建XML数据的WebMethod。 但是,我的页面不会调用此WebMethod,也不会创建此表。 这有意义吗?
$(document).ready(function () {
source =
{
datatype: "xml",
datafields: [
{ name: 'User', type: 'string' },
{ name: 'RequestDate', type: 'DateTime' },
{ name: 'SituationDesc', type: 'string' }
],
async: false,
record: 'Table',
url: 'Tickets.aspx/GetTickets',
};
var dataAdapter = new $.jqx.dataAdapter(source, {
contentType: 'application/json; charset=utf-8'}
});
$("#jqxgrid").jqxGrid(
{
width: 670,
source: dataAdapter,
theme: 'classic',
columns: [
{ text: 'Product Name', datafield: 'User', width: 250 },
{ text: 'Date', datafield: 'RequestDate', cellsalign: 'right', cellsrenderer: cellsrenderer, width: 100 },
{ text: 'Situation', datafield: 'SituationDesc', cellsalign: 'right', cellsrenderer: cellsrenderer, width: 100 },
]
});
});
<body class='default'>
<div id='jqxWidget' style="font-size: 13px; font-family: Verdana; float: left;">
<div id="jqxgrid">
</div>
</div>
[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public string GetTickets()
{
string query = "SELECT [User],RequestDate,SituationDesc, FROM Ex";
SqlCommand cmd = new SqlCommand(query);
DataSet data = GetData(cmd);
System.IO.StringWriter w = new System.IO.StringWriter();
data.Tables[0].WriteXml(w, XmlWriteMode.WriteSchema, false);
return w.ToString();
}
private DataSet GetData(SqlCommand cmd)
{
string strConnString = ConfigurationManager.ConnectionStrings["XX"].ConnectionString;
using (SqlConnection con = new SqlConnection(strConnString))
{
using (SqlDataAdapter sda = new SqlDataAdapter())
{
cmd.Connection = con;
sda.SelectCommand = cmd;
using (DataSet ds = new DataSet())
{
sda.Fill(ds);
return ds;
}
}
}
}
答案 0 :(得分:1)
您实际上没有为Ajax声明静态方法来调用。
我没有完成所有代码,但这部分肯定不正确..
[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public string GetTickets()
{
应注意'静态'声明
[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public static string GetTickets()
{
另外 - 尝试安装Firebug(或类似的) - 在尝试调用方法时,您将能够看到浏览器中出现的错误。这将有助于您进一步识别任何可能的错误。
在进行上述更改后,您还需要将private DataSet GetData(SqlCommand cmd)
声明为static
,否则将无法访问。