首页 > Web开发 > 详细

js调用后台方法

时间:2014-03-04 00:03:56      阅读:794      评论:0      收藏:0      [点我收藏+]

转自http://youzhangcai.blog.163.com/blog/static/166848184201082393511143/

 

/ 需要标识为WebMethod 
[System.Web.Services.WebMethod]
// 注意,要让前台调用的方法,一定要是public和static的 
public static string aaa(string name)
{
    string result = "Hello:" + name;
    return result;
}

 


 <script type="text/javascript">
        function btnClick(){
            // 调用页面后台方法,前面跟方法所需的参数,接着是方法回调成功时要执行的js函数,最后一个是方法回调失败时要执行的js函数
            PageMethods.aaa("you",funReady,funError);
        }        
        // result 就是后台方法返回的数据
        function funReady(result){
            alert(result);
        }
        // err 就是后台方法返回的错误信息
        function funError(err){
            alert("Error:" + err._message );
        }
     </script>

 


 <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" />
        <input type="button" onclick="btnClick()" value="test" />

 

 方法2:
   
    function Show()
    {
      var v = "中国";
      var s = ‘<%=CsharpVoid("‘+v+‘") %>‘;  // 你好!“+V+”
      alert(s);
    }

 


    protected string CsharpVoid(string strCC)
    {
       strCC = "你好!" + strCC;
       return strCC;
    }

 
<input type="button" onclick="Show()" value="hhhh" />

方法三:

// 需要标识为WebMethod 
[System.Web.Services.WebMethod]
// 注意,要让前台调用的方法,一定要是public和static的 
public static string aaa(string name)
{
    string result = "Hello:" + name;
    return result;
}

<script type="text/javascript">
        function btnClick(){
            // 调用页面后台方法,前面跟方法所需的参数,接着是方法回调成功时要执行的js函数,最后一个是方法回调失败时要执行的js函数
            WebSerCustomer.aaa("you",function(ress){//ress就是后台方法返回的数据,aaa是webservice WebSerCustomer.axms页面上的方法
          alert(ress)

          });
        }        
          </script>

<asp:ScriptManager ID="ScriptManager1" runat="server">
       <Services><asp:ServiceReference Path="~/WebSerCustomer.asmx" /></Services>//WebSerCustomer.asmx后台webservice类的页名称
   </asp:ScriptManager>

 <input type="button" onclick="btnClick()" value="test" />

js调用后台方法,布布扣,bubuko.com

js调用后台方法

原文:http://www.cnblogs.com/liziqiang/p/3578231.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!