实现AjaxPro的方法
2010-10-16 15:40:40 来源:WEB开发网核心提示:实现二:(Default.aspx.cs) using System; using AjaxPro; [AjaxPro.AjaxNamespace("My")] public partial class _Default : System.Web.UI.Page { protected vo
实现二:
(Default.aspx.cs)
using System;
using AjaxPro;
[AjaxPro.AjaxNamespace("My")]
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 GetTime(string name)
{
return name + ":" + DateTime.Now.ToString();
}
}
(Default.aspx)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_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>
<script language="javascript" type="text/javascript">
function A1() {
My.GetTime("asd",B1);
}
function B1(a) {
alert(a.value);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<input onclick="A1()" />
</div>
</form>
</body>
</html>
更多精彩
赞助商链接
