Click here to Skip to main content
15,881,849 members
Articles / Web Development / IIS

Events Between Web Forms

Rate me:
Please Sign up or sign in to vote.
4.59/5 (12 votes)
6 Jul 2007CPOL4 min read 43.1K   947   48  
Raise Events Between Web Forms Using CallBacks or Ajax
Public Partial Class AjaxCallBack
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

        'the script manager
        Dim objScriptManager As ScriptManager = ScriptManager.GetCurrent(Me.Page)

        'Set up the Reference
        Dim TestWS As ServiceReference = New ServiceReference
        TestWS.Path = "~/WSUsers.asmx"

        'Add the WS reference  to the script manager
        objScriptManager.Services.Add(TestWS)

    End Sub

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Mexico Mexico
I am Pedro Ramirez from mexico, work for www.sciodev.com, the company is located in Mexico, we do outsourcing and nearshore development, we are focused on SaaS nearshore development, I started with VB.Net, but now I am ambidextrous using VB.Net or C#.

Comments and Discussions