gpt4 book ai didi

c# - 像方法一样调用asp net web服务

转载 作者:太空宇宙 更新时间:2023-11-03 14:10:21 25 4
gpt4 key购买 nike

我让我的一些 ajax 对谷歌可见。为此,我必须根据查询字符串(转义片段)提供我的内容的 html 快照。问题是,我的一些 html 是由网络服务调用返回的。

我有一个名为 Site.ajax._search 的类,里面有 web 方法,例如:

[WebMethod(EnableSession = true)]
public string ReadSearch(string nm_what, string nm_where, int pageindex)
{
}

最佳答案

是的,没关系,我也会让它成为静态的:

[WebMethod(EnableSession = true)]
public static string ReadSearch(string nm_what, string nm_where, int pageindex)
{
}

//from another page
protected void Page_Load(object sender, EventArgs e)
{
//example
string s = Search.ReadSearch("this","here",2); //add namespace and references needed
}

Why do ASP.NET AJAX page methods have to be static?

关于c# - 像方法一样调用asp net web服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8039478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com