ajax 前台无法调用后台方法是返回值为NULL

usingSystem;usingSystem.Text;usingSystem.Collections;usingSystem.ComponentModel;using... using System;
using System.Text;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using Ajax;

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

Ajax.Utility.RegisterTypeForAjax(typeof(_Default));

}
[Ajax.AjaxMethod]
public string GetText()
{
return "3232333";
}

}

JS:
function ajaxTest(){
var a = _Default.GetText().value;
window.alert(a);

}

LOGIN.ASPX中
<input id="Button1" type="button" value="登 录" onclick=" return ajaxTest()"/></td>

WEBCONFIG:
<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" />
</httpHandlers>

为什么var a = _Default.GetText().value
a为null???
求解!!!!!
大虾们求求你们看看!!!我要下跪了!!!!呜~~~~~~~~
.value删除了试过了没有用!!!!
还有AjaxControlToolkit.dll
AJAXExtensionsToolbox.dll 我都装了!!而且这两个是AJAX.NET用的!!!我又没有用AJAX.NET框架!!
展开
 我来答
lipai006
2008-06-02 · TA获得超过240个赞
知道小有建树答主
回答量:610
采纳率:0%
帮助的人:224万
展开全部
光一个AJAX.dll不行
AjaxControlToolkit.dll
AJAXExtensionsToolbox.dll
还需哟啊这两个 从网上下吧 至于这两个是干什么用的 自己查吧 我也正看呢 NND挺麻烦的还
-----------------------------------------
我新建的项目 就加载了3个dll文件 和
<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" />
</httpHandlers>
为什么我就出来了~!!
-----------------我的源码--------------------
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace WebApplication1
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Ajax.Utility.RegisterTypeForAjax(typeof(_Default));
}
[Ajax.AjaxMethod()]
public string SendMsg()
{
return "123456";
}
}
}
<script>
function aa()
{
var a=_Default.SendMsg().value;
window.alert(a);
}
</script>
</head>
<body>
<form id="form1" runat="server">

<div>
<input id="Button2" type="button" value="button" onclick="aa()" />
[Ajax.AjaxMethod()]
public string SendMsg()
{
return "123456";
}

web.config
<httpHandlers>
<add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory, Ajax" />

</httpHandlers>
</system.web>
</configuration>
wmhysu
2008-06-02 · TA获得超过192个赞
知道小有建树答主
回答量:129
采纳率:0%
帮助的人:82.8万
展开全部
应该使用回调函数
JS:
function ajaxTest(){
_Default.GetText(GetText_CallBack);
}

function GetText_CallBack(res)
{
window.alert(res.value);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
景士
2012-05-26
知道答主
回答量:12
采纳率:0%
帮助的人:4.9万
展开全部
var a = _Default.GetText().value; 把.value 去掉

public string GetText()改为 public string GetText(string str)

然后 var a = _Default.GetText() 随便传一个string类型的值过去,比如 var a = _Default.GetText(“aa”)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chwu1
2008-06-02 · TA获得超过380个赞
知道小有建树答主
回答量:402
采纳率:0%
帮助的人:261万
展开全部
var a = GetText();

把后面的那个.value删除了试一下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式