| Author: Shuby Arora 02 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
Sharad,
Technically there is no restriction to limit web-page length. You are saying about displaying full length of data. I dont know the scenario in your case, It may be due to Data retrieval from your Datasource. It may be due to nested loops It may be due to concatenation and many more reason. It might be possible you are creating html contents with codes and dumped them through some variables like string, stringbuilders key value pairs etc.
As your question is not clear I am in the stage to say that: There is a maximum limit of a web page length: The maximum size of any individual webpage should be less than 20-30 KB, ut exceptions are there.
I suggest to do the following:
1. Check the view source of your web page 2. Get the length of your page [http://www.seochat.com and check with Page Sze tool]. 3. I am sure whenever you try to get the page source and copypaste it into new html page then it will definitely show complete contents because this is not on the servers, its independent or offline. It is because there is no restriction of page timeout. The display of content length depends upon the time out.
For more details on Page Length cehck : http://web.ipac.caltech.edu/staff/tchester/how_to/guidelines.html http://www.useit.com/alertbox/sizelimits.html
Other known limitations of the Browsers are: 1. Maximum URL length is 2,083 characters in Internet Explorer http://support.microsoft.com/kb/208427 2. Refer to link : http://ourworld.compuserve.com/homepages/profirst/browser.htm for limitations.
Also refer to handling browser limitation document.
Note: At this time, it is possible this is a partial answer of your query as your query is not elaborated. Please make specific query for the specific answer.
Regards, Shuby Check your feet while you are ranning, Check your hand while you are writting..... But never check your swept while you are struggling Lets Share Knowledge...
browser-limitations-v7.pdf |
| Author: Shuby Arora 04 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
In addition to above, The browser won't know the difference between a static html page and a page rendered by C# code on the server. Are you sure you're not adding content to the page after it has been loaded?
Try to do all the task before or in page_load event.
Regards, Shuby Check your feet while you are ranning, Check your hand while you are writting..... But never check your swept while you are struggling Lets Share Knowledge...
|