我正在尝试让我的 asp.net 解决方案与 jquery ajax 一起使用。我正在使用这个例子:
http://encosia.com/using-jquery-to-directly-call-aspnet-ajax-page-methods/
到目前为止我有这个,但它给了我关于它没有被定义的命名空间错误。Page
并且WebMethod
没有定义...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PDFLibrary.PDFLibrary
{
public partial class SaveStructure : Page
{
[WebMethod]
public static string GetDate()
{
return DateTime.Now.ToString();
}
}
}
有谁知道如何解决这一问题?
谢谢