HTML と .Net 3.5 を持つ単純な .Net 3.5 ページを作成しようとしていますWebMethod
。ブラウザから自分を呼び出そうとするとWebMethod
、ページが返され続けます。それを機能させる方法はありますか?
これは私のコードです:
<%@ Page Language="C#" Inherits="CFW.WebUI.Page" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
[System.Web.Services.WebMethod]
public static string Test()
{
return "Hola!";
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
...
</html>
注: 私はAjax.Net を使用していません。クライアントから (jQuery を使用して) WebMethod を呼び出したいだけです。