473,394 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Internet Explorer cannot display the web page

2
Hi,
I have three dropdownlists on a webpage which I am loading on the pageload under !Ispostback.
After the page is loaded, when I am selecting a value from the first dropdown I am getting an error saying that Internet Explorer cannot display the web page.
When I am debugging through the code, I found out that it is not hitting the page load event at all after selecting the value from the dropdown.
Can someone tell what is the problem.
It is very urgent for me.

Thanks in advance.
Nov 18 '09 #1
6 4458
Frinavale
9,735 Expert Mod 8TB
Wow, the page load event is part of the ASP.NET page life cycle.

I don't know how it is not hitting the page load event...unless your page is not valid.
Could you post the code that you are using to populate your DropDownLists?

-Frinny
Nov 19 '09 #2
radhip
2
Hi Frinavale,
Thanks for the reply.
Actually what happened was, I have thousands of records that I was trying to populate in the dropdownlist. I guess it has cross the size limit of the dropdown and that's why it was breaking.
I did it in a different way and it is working now.
Anyway do you know what is the size limit of the Dropdownlist. I mean maximum how many rows we can show in a dropdownlist.

Thanks for the reply.

Radhi.
Nov 20 '09 #3
Frinavale
9,735 Expert Mod 8TB
I didn't think there was a limitation on the number of items but that doesn't mean there isn't one.

If you have thousands of items to select from you may want to consider using a different control. I mean, how are people going to find the one thing that they want to select? The DropDownList would be HUGE!
Nov 20 '09 #4
drhowarddrfine
7,435 Expert 4TB
It may be a simple matter, too, of the download time for those thousands of items but there is no limit in the standard and I'm not aware of one in browsers though I wouldn't be surprised if one is set. The error is more indicative of a download timeout.
Nov 20 '09 #5
Frinavale
9,735 Expert Mod 8TB
It's not the download time actually.

The OP was saying that the page is properly loaded in IE the first time the page is sent to the browser. They were complaining that the page wouldn't load upon returning the second round-trip (after the page was submitted when the user selected a value in the first DropDownList...aka HTML <select>).

Actually, you may be right about loading the time it takes to load all of the items though...if the OP had implemented code that added items to the DropDownList that was executed every time the page loads...then it could be that they are loading double the items the second trip.

This may take too much time and/or resources for the server to create the lists and it may never get sent to the browser.

But this doesn't explain why it never hit the Page Load event.

That doesn't make sense...unless the page was not valid and ASP.NET stopped the request before it hit the code. This would mean that the items in the DropDownList were changed somehow client side (or something else is going on to make the page invalid).

-Frinny
Nov 20 '09 #6
Frinavale
9,735 Expert Mod 8TB
I think I might know of another reason this isn't working.

If the worker process for the web application grows to big it will be recycled...
Nov 20 '09 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Bill Thom | last post by:
I have a Microsoft Access 2000 (9.0.4402 SR-1) database that I am attempting to launch from a hyperlink using Internet Explorer (Version 6.0.2800.1106). If I attempt to launch the database from...
3
by: Simon | last post by:
Hi, I need to prevent Internet Explorer to save the page in history collection when it is in PostBack. To try do this I have put this code: protected override void OnLoad( EventArgs evt) { if...
6
by: pradeep_TP | last post by:
I am facing a strange problem with my web site. Afer reinstalling the web application on the web server, I am getting a dialog box for each page. The dialog box has the following information. ...
11
by: Doug van Vianen | last post by:
Hi, I often like to include some JavaScript coding in my web pages to make them more interesting. Unfortunately, even when this coding is as simple as a check to see what the display width is in...
3
by: laredotornado | last post by:
Hi, This problem only affects PC IE. On a secured page (a page visited via https), there is a link that reads -- "Download HTML File". The link connects to this page <?php...
1
by: hameeduddinasim | last post by:
Hi i have 2 button on a web page(index.aspx) and both the button have the same code i.e. response.redirect("index.aspx?var=c") but when i click one button it is refreshing the page and the...
10
by: Lorie0114 | last post by:
Hello, We have an issue that I do not know how to resolve. Our website has several hundred reports. There are a handful of them that are causing issues when there is no interaction for a couple...
4
by: eschneider | last post by:
I get the following error when trying to browse the .asmx. I get the same thing when trying to add a reference. using .NET 2.0 There is no error message. Any ideas? Thanks,
2
by: swethak | last post by:
Hi, I am getting the problem the problem with google map in Internet Explorer. This map worked fine in mozilla . When i opened the same map in Internet Explorer i am getting the error...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.