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

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

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
The problem is an unclosed html comment tag. Look for the following text in the source of your page:
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.