Hidden controls, iframes or divs

Posted by user287745 on Stack Overflow See other posts from Stack Overflow or by user287745
Published on 2010-05-29T04:02:13Z Indexed on 2010/06/18 16:03 UTC
Read the original article Hit count: 385

Filed under:
|
|
|
|

What happens to the controls or the iframe or the div, which are hidden? Do they get transferred to the user side?

Disabled: does it get transferred to the user side?

What I want is,

an aspx page will be having many iframes to display different pages. There will be many div tags to display CSS formatted information.

To understand what I mean by many:- I have to transfer a complete website with 30 aspx pages into one single page!

I have simply combined everything resulting in one extremely huge page.

My concern is that on local host it loads fast, but when on online server accessed by numerous people for education purposes, the site (ONE PAGE) WILL SLOW DOWN terribly.

To overcome this I thought of using hidden and disable options.

What is an improved way of achieving the above?

Yes, it sounds silly but this is the requirement.

Edit: Yes, I know id and server tag must be set, but what I am asking will the div tag be sent to the user's browser? One answer is no.

So can I enable them using JavaScript?

Like

document.getElementById(id).style.visibility="visible"


What if I disable them, and from coding of JavaScript enable them? Will they be loaded at the time of enabling?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about iframe