一、WebService.asmx
  处理业务数据,在GetWhether方法中产生天气情况数据,供JqueryRequest.aspx调用,代码如下:

[System.Web.Script.Services.ScriptService]
public class WebService : System.Web.Services.WebService {

    public WebService () {

        //如果使用设计的组件,请取消注释以下行
        //InitializeComponent();
    }

    [WebMethod]
    public string GetWhether(string cityId)
    {
        Random r = new Random();
        int degree = r.Next(100);

        string wInfo = string.Format("Today {0}'s temperature is {1} degrees", cityId, degree);
        return wInfo;
    }
}

二、AjaxRequest.aspx

  通过点击按钮来请求WebService.asmx的GetWhether(string cityId)方法,获取天气数据。代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript" language="javascript" src="js/jquery-1.3.2.js"></script>
</head>
<body>
    <form );
                    }
                });
            }
        </script>
    </div>
    </form>
</body>
</html>
  

 

相关文章:

  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-03-11
  • 2022-12-23
  • 2022-12-23
  • 2021-05-02
猜你喜欢
  • 2021-05-22
  • 2021-10-28
  • 2021-07-18
  • 2022-01-28
  • 2021-06-26
  • 2022-12-23
相关资源
相似解决方案