开发者社区> 问答> 正文

ajaxwebmethodasp.net调用不成功需要什么设置吗

//test.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Web
{
    public partial class test : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        [System.Web.Services.WebMethod]
        public static String GetString(string name)
        {
            return "Hello";
        }
    }
}

//test.aspx

    <script type="text/javascript">
        alert("1111111");
$.ajax({
            type: "POST",
            contentType: "application/json",
            url: "test.aspx/GetString",
            data: "{'name':'kevin'}",
            dataType: "json",
            success: function (theback) {
                //转换为json格式
                alert(theback.d)
//                var objd = eval('(' + theback.d + ')');
//                alert(objd.msg);
            },
            error:function(){alert("22222");}
        })
        </script>

展开
收起
jrcg888 2014-04-11 18:22:07 6952 0
1 条回答
写回答
取消 提交回答
  • 元芳,阿里云云栖论坛总版主,phpwind官方论坛管理员,社区论坛领域应用专家。长期活跃在社区论坛建站领域,对各类社区论坛程序颇有研究!乐于交友,热心助人,以帮助和服务站长朋友为宗旨,帮助数以千计的站长朋友顺利建站!
    尚未有人答复
    建议发售后工单咨询
    2014-04-14 12:03:10
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载