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 9256721
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:01:01+00:00 2026-06-18T12:01:01+00:00

I am developing a GIS web app (mapping) in C# ASP.net. I have an

  • 0

I am developing a GIS web app (mapping) in C# ASP.net.

I have an Ajax TabContainer housing several TabPanels with a table. The table contains other content such as the map window, scale bar etc (all from the ESRI WebAdf toolkit).

Here’s a slimmed down version of my table without the other content…

<table id="MainTable>

<tr>
<td>
   <ajax:TabContainer runat="server" ActiveTabIndex="0" id="TabContainer"  CssClass="ajax__tab_xp">  

    <ajax:TabPanel runat="server" HeaderText="Online Mapping Service" ID="TabPanel1">

</ajax:TabPanel>

<ajax:TabPanel ID="TabPanel2" runat="server" HeaderText="Postcode">


    </ajax:TabPanel>

    <ajax:TabPanel ID="TabPanel3" runat="server" HeaderText="Coordinates">
        <ContentTemplate>                                      



  </ajax:TabPanel>

   </ajax:TabContainer> 

  </td>
  </tr>

  </table>

On Postback at runtime my Tabcontainer sometimes dissapears. This issue is not browser specific.

So far I have tried with no success to…

  1. Set Z-Index with Relative positioning for the TabContainer
  2. Include a JQuery script to ‘show’ the TabContainer…

        <script type="text/javascript" language="javascript">
    
        $(document).ready(function() {
        $("#TabContainer").show();
    
        });
    
       </script>
    

Is there some C# I can include in the code behind along the lines of?…

Public void page_Load(object sender, EventArgs e)
{
   TabContainer.show()
}

Fairly new to programming and trying to figure out how to ‘always show’ or ‘always ontop’ the TabContainer.

Thanks

  • 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-06-18T12:01:02+00:00Added an answer on June 18, 2026 at 12:01 pm

    Ok, sorted this. There was an issue with the AJAX Toolkit not posting back client side…

    <script language="javascript" type="text/javascript">
    
            // Solution to sys.invalidoperationexception bug
            Sys.Application.initialize = function Sys$_Application$initialize() {
                if (!this._initialized && !this._initializing) {
                    this._initializing = true;
                    var loadMethodSet = false;
                    var initializeDelegate = Function.createDelegate(this, this._doInitialize);
                    if (document.addEventListener) {
                        loadMethodSet = true;
                        document.addEventListener("DOMContentLoaded", initializeDelegate, false);
                    }
                    if (/WebKit/i.test(navigator.userAgent)) {
                        loadMethodSet = true;
                        this._load_timer = setInterval(function() {
                            if (/loaded|complete/.test(document.readyState)) {
                                initializeDelegate();
                            }
                        }, 10);
                    }
                    else {
                        /*@cc_on@*/
                        /*@if (@_win32)
                        loadMethodSet = true;
                        document.write("<script id=__ie_onload defer src=BLOCKED SCRIPTvoid(0)><\/scr" + "ipt>");
                        var deferScript = document.getElementById("__ie_onload");
                        if (deferScript) {
                            deferScript.onreadystatechange = function() {
                                if (this.readyState == "complete") {
                                    initializeDelegate();
                                }
                            };
                        }
                        /*@end@*/
                    }
    
                    // only if no other method will execute initializeDelegate is
                    // it wired to the window's load method.
                    if (!loadMethodSet) {
                        $addHandler(window, "load", initializeDelegate);
                    }
                }
            }
            Sys.Application._doInitialize = function Sys$_Application$_doInitialize() {
                if (this._load_timer !== null) {
                    clearInterval(this._load_timer);
                    this._load_timer = null;
                }
    
                Sys._Application.callBaseMethod(this, 'initialize');
    
                var handler = this.get_events().getHandler("init");
                if (handler) {
                    this.beginCreateComponents();
                    handler(this, Sys.EventArgs.Empty);
                    this.endCreateComponents();
                }
                this.raiseLoad();
                this._initializing = false;
            }
    
            Sys.Application._loadHandler = function Sys$_Application$_loadHandler() {
                if (this._loadHandlerDelegate) {
                    Sys.UI.DomEvent.removeHandler(window, "load",
                      this._loadHandlerDelegate);
                    this._loadHandlerDelegate = null;
                }
                this._initializing = true;
                this._doInitialize();
            }         
    
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Developing a Django web app, I have a list of packages I need to
developing a web application using java. I have SQL queries with more than 40
I'm developing a GIS: a web client to see some maps loaded from OGC
Developing ios app. I have an object class Product.h and .m respectively along with
Developing an app for iOS, I need to know how to have instanced and
Developing a mobile web app with: jquery 1.7.1 jquery-mobile 1.1.1 Rails 3.2.1 Here, I
Developing an ASP.NET MVC 3 application (my first) and running into some trouble with
I'm developing a GIS-based application and I have organized data fro the user to
Developing a web application that I've registered with Twitter. In this app, I might
We are developing an extension (in C# .NET env.) for a GIS application, which

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.