NETにおけるCallBackのコールバック技術
1812 ワード
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;
public partial class Test : System.Web.UI.Page,ICallbackEventHandler
{
string Resultstr = "";
protected void Page_Load(object sender, EventArgs e)
{
//
}
public void RaiseCallbackEvent(string eventArgument)
{
Resultstr = " :" + eventArgument;
}
public string GetCallbackResult()
{
return Resultstr;
}
}
<%@ Page Language=「C〓」AutoEventWireup=「true」Codefile=「Test.aspx.cs」Inheritys=「Test」%
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
<html xmlns=「http://www.w3.org/1999/xhtml」>