Ezi
Ezi

Reputation: 2210

Panel gets hidden on web server

on localhost its fine but on the webhost it gets hidden I can't figure it out.

Local Host

This is the url where its hidden: EDIT: Removed url...

Online

Upvotes: 0

Views: 89

Answers (2)

patmortech
patmortech

Reputation: 10219

The problem is an unclosed html comment tag. Look for the following text in the source of your page:

<!--
    <div id="ctl00_ctl00_contentPlaceHolder_contentPlaceHolder_rightProductsAccessoriesControl_notFoundMessagePanel">

</div>

<!--

You'll see that there is an opening comment tag <!-- before the div, and after it, instead of a closing tag --> there is another opening tag. Which basically comments out the whole bottom part of your page until it hits another html comment section that closes it off. This also causes a script error because the ASP.NET validator code cannot find the validator control.

It works in FF because its parser seems to realize you made a mistake and stops it from commenting out the rest of the page. IE does not help you like this.

Upvotes: 3

Nalaka526
Nalaka526

Reputation: 11464

Check your html code is formatted properly. Close all tags and check for overlapping of tags incorrectly.

Upvotes: 1

Related Questions