我在一个 aspx 页面中有一个 WebMethod,它似乎只返回一个空白页面,我认为它甚至没有被调用,可能是什么原因造成的?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
using System.Text;
using System.Web.Script.Serialization;
using System.Web.Services;
using System.Web.Script.Services;
namespace Test.webservices.mainGrid
{
public partial class getMainGrid : System.Web.UI.Page
{
[WebMethod]
[ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
public static string GetRecords()
{
return "test";
}
}
}