Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 511399
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:12:45+00:00 2026-05-13T07:12:45+00:00

Is it possible to add a new ServiceReference instance to the ScriptManager on the

  • 0

Is it possible to add a new ServiceReference instance to the ScriptManager on the Page during an asynchronous postback so that subsequently I can use the referenced web service through client side script?

I’m trying to do this inside a UserControl that sits inside a Repeater, that’s why adding the ScriptReference programmatically during Page_Load does not work here.

EDIT 2: This is the code I call from my UserControl which does not do what I expect (adding the ServiceReference to the ScriptManager during the async postback):

private void RegisterWebservice(Type webserviceType)
{
    var scm = ScriptManager.GetCurrent(Page);
    if (scm == null)
        throw new InvalidOperationException("ScriptManager needed on the Page!");

    scm.Services.Add(new ServiceReference("~/" + webserviceType.Name + ".asmx"));
}

My goal is for my my UserControl to be as unobtrusive to the surrounding application as possible; otherwise I would have to statically define the ServiceReference in a ScriptManagerProxy on the containing Page, which is not what I want.

EDIT:

I must have been tired when I wrote this post… because I meant to write ServiceReference not ScriptReference. Updated the text above accordingly.

Now I have:

<asp:ScriptManagerProxy runat="server" ID="scmProxy">
    <Services>
        <asp:ServiceReference Path="~/UsefulnessWebService.asmx" />
    </Services>
</asp:ScriptManagerProxy>

but I want to register the webservice in the CodeBehind.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T07:12:46+00:00Added an answer on May 13, 2026 at 7:12 am

    Edit:

    After checking your issue, Here is the reason why it is not working:
    When you add ServiceReference to ScriptManager > Services section manually in page. It adds 1 client script include directive.

    e.g:

    <script src="TestService.asmx/jsdebug" type="text/javascript"></script>
    

    or

    <script src="TestService.asmx/js" type="text/javascript"></script>
    

    which provide you to accessibility to your Frontend.Web.YourScriptMethods,

    Now when you add ServiceReference in async postback – It is not adding this client script inclue. So you get client script error – method is undefined.

    But i figured out a workaround for this; (do not know it is right way to do it)

        if (ScriptManager.GetCurrent(this).IsInAsyncPostBack)
        {
            ScriptManager.RegisterClientScriptInclude(this, this.GetType(), "testservice", "TestService.asmx/js");
        }
    

    You can replace the “TestService.asmx” path according to your project/web service.

    This way you can achieve what you want.

    Hope this helps,

    Krunal Mevada


    Old Ans:

    Use following:

        if (ScriptManager.GetCurrent(this).IsInAsyncPostBack)
        {
            ScriptManager.GetCurrent(this).Services.Add(new ServiceReference("~/Service.asmx"));
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 313k
  • Answers 313k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer System.Threading.Thread.CurrentThread.GetApartmentState() May 13, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer The platforms you've laid out are pretty heavy weight. For… May 13, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer Try this: some_var = request.POST.getlist('checks') some_var will contain [1,3,4] (those… May 13, 2026 at 10:49 pm

Related Questions

I am serialzing a linq object through WCF. The dbml is setup for unidirectional
is it possible to add a new property to a previously declared object? Here
Is it possible to add a row to a gridview at runtime? I need
Is it possible to incrementally increase the amount of allocated memory on a free
Is it possible to do something like this? class A { public virtual string

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.