Question : web config file

Hi,

In my web config file I specify the Application Name, but what if I have numerous applications in the applications table?

For example, I create multiple companies within the web application and each company has it's own applicationID, this is so that each company can have their own roles etc with the same names as another company, but for different purposes.

Would be grateful for any advice.

Thanks

Answer : web config file

try this code.....

    <script type="text/javascript">
        if ($.browser.msie) {
            // Put your Activebar calling code in here
            $(function() {
                // Everything inside this function will be automatically executed
                // after the page has been loaded and the DOM is complete

                $('<div></div>').html('Internet Explorer. This information bar is loaded with this page and can contain useful information for users.').activebar();
            });
        } else {
            $(function() {
                // Everything inside this function will be automatically executed
                // after the page has been loaded and the DOM is complete

                $('<div></div>').html('This information bar is loaded with this page and can contain useful information for users.').activebar();
            });
        }    
    </script>
Random Solutions  
 
programming4us programming4us