我在类(C#和ASP.Net)中有一个我定义的方法(MyClass.cs)并通过Jquery
& Ajax
。
但它不起作用。
当我在另一个页面(Default.aspx)中调用此方法时,它可以正常工作。
请帮我。谢谢。
enter image description here
我想从这个类中调用FetchNews()
答案 0 :(得分:0)
是的,如果MyClass.cs继承自System.Web.UI.Page并且aspx.cs(Default.aspx.cs)类继承.cs(MyClass.cs)
,你可以立即调用MyClass.cs [WebMethod] attribute must be specified in MyClass.cs testmethod
public class MyClass: System.Web.UI.Page
{
[WebMethod]
public static void Testmethod()
{
return '';
}
}
public partial class Default: MyClass
{
...
}