Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
750
absolute position and Menu Datasource SNAFU?
posted

Hi,

 I'm a C guy trying to ASP.net and so far so good...as soon as I found the absolute position feature in VS 2008. Whew! at least things sort of show up where I tell them too....the problem that I having is that it APPEARS that the "SiteMapDataSource - SiteMapDataSource1" Tab is making all my positioned controls be too low on the page.

 is there any way to hide it in the design mode?

 thanks a bunch,

Gene

Parents
No Data
Reply
  • 19308
    posted

    HTML pages follow a flow layout (and there's no way to turn that off).  You can take items out of the flow layout by setting their position to absolute, or by setting their display to none.  This is done via CSS.  The easiest way is to use the "style" property of an element.  So in your case, set the SiteMapDataSource.Style="display:none";

    Hope this helps,

    -Tony

Children
No Data