使用AjaxPro.2.dll,从服务器获取多个值,怎么传递到客户端?
[AjaxPro.AjaxNamespace("MyAjAx")]publicpartialclassDefault:System.Web.UI.Page{protect...
[AjaxPro.AjaxNamespace("MyAjAx")]
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
AjaxPro.Utility.RegisterTypeForAjax(typeof(Default));
}
[AjaxPro.AjaxMethod]
public string[] GetNeiRong(string id)
{
这个方法根据主键ID获取一些信息,多个列,要传回客户端
}
Default.aspx文件:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MyWebSite.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link rel="Stylesheet" type="text/css" href="CSS/MuBan.css" />
<script type="text/javascript">
function myclick(id)
{
MyAjAx.GetNeiRong(id.toString())在这里调用服务器那个函数
}
</script>
</head>
现在那个GetNeiRong和myclick改怎么才能获得多个列的值呢? 展开
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
AjaxPro.Utility.RegisterTypeForAjax(typeof(Default));
}
[AjaxPro.AjaxMethod]
public string[] GetNeiRong(string id)
{
这个方法根据主键ID获取一些信息,多个列,要传回客户端
}
Default.aspx文件:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MyWebSite.Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<link rel="Stylesheet" type="text/css" href="CSS/MuBan.css" />
<script type="text/javascript">
function myclick(id)
{
MyAjAx.GetNeiRong(id.toString())在这里调用服务器那个函数
}
</script>
</head>
现在那个GetNeiRong和myclick改怎么才能获得多个列的值呢? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询