Use icallbackeventhandler in ASP. net2.0 to Implement Asynchronous interaction between the client and the server.

Source: Internet
Author: User
Page Code :
<SCRIPT type = "text/JavaScript">
Function compute eserverdata (Rvalue)
{
Alert (Rvalue );
}
</SCRIPT>
<Input id = "button1" type = "button" value = "button" onclick = "callserver ('client')"/>
Server code: Public Partial Class Back2: system. Web. UI. Page, system. Web. UI. icallbackeventhandler
{
Public   String Callbackvalue =   Null ;
Protected   Void Page_load ( Object Sender, eventargs E)
{

}
// Register the script to the foreground page
Protected   Void Page_prerender ( Object Sender, eventargs E)
{
Regclientscript ();
}
// JavaScript Functions (client callback for server-side events)
Protected   Void Regclientscript ()
{
Clientscriptmanager CS = Page. clientscript;
String Jstxt = @"  
Function callserver (msgid)
{
"   + CS. getcallbackeventreference ( This , " Msgid " , " Receiveserverdata " , Null ) +   @" ;
} " ;
CS. registerstartupscript ( This . GetType (), " Callserver " , Jstxt, True );
}
// Icallbackeventhandler Interface
// Pass the value to the foreground
String Icallbackeventhandler. getcallbackresult ()
{
ReturnCallbackvalue+ ", Server";
}

// According to the foreground Parameters
Void Icallbackeventhandler. raisecallbackevent ( String Eventargument)
{
This. Callbackvalue=Eventargument;
}
}

Running result: (Implement Asynchronous interaction without refreshing the page)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.