ASP.NET page becomes blank/freezes after some tome

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a strange problem with ASP.NET 1.1 SP1 application.

Application has a asp.net page which has a datagrid in it.( data grid/PAGE

has large amount of data. always more than 1MB). There is a hyperlink in the

grid which will open up another detail from. Problem is some times when I

click on the hyperlink, the page never opens and system shows white blank IE

page. After some time page shows the page not found error. I checked the

event log . There is nothing in the log. If I open another window and access

the same URL then that also works. I have also hosted some other ASP.NET 1.1

application int the same development machine. That application also works

fine when this problem occurs. I enabled the ASP.NET tracing. Trace.axd file

does not show any request at all!.. Also IIS 5 web log also does not show the

requests.This means that the request is not getting submitted from IE to IIS.

Any idea?

Following is my machine configuration

OS: Windows XP SP2
IE: 6.0.2900.2180.XPSP_SP2_GDR.050301-1519CO, I installed the latest

cumulative service pack for IE6SP1 also( post SP1 service pack)

..NET Framework 1.1 with SP1
I also have .NET Framework 2 and SQL2005 Express Advanced edition installed

in it.
 
Ram,

The problem is definitely with the request not submitted from IE to IIS.
First of all i would like to know how you are displaying the hyperlink
column inside

1. If you have the designed the hyperlink column at the design-time like the
following, make sure that the navigationurl is correct

asp:HyperLinkColumn DataTextField="YourColumnName" NavigateUrl=""
HeaderText="Hyper" />

2. If you are displaying/designing the hyperlink column at the run-time,
make sure that cell-activation event is fired when you click on the
hyperlink.
The amount of data (1MB) in the DataGrid might be a problem for the scenario.
 
Hi,
Thanks for the reply.
I verified that the hyperlink is correct. The windows cpation has the URL in
it. So if I open another window instance then the page is loding corrrectly.
Today I set up the same project in another lap top. I am facing the same
problem there as well. After waiting for 10- 15 minutes, if I do the view
source then the HTML is showing just body tag. So the screen appears as
blank. But in another machine I get the page could not be found error after
10 -15 minutes.
I saw similar articles in web .But those are becasue of Windows2003 server.
My server is Windows2000 and development box is XPSP2.
Any thoughts?
 
Back
Top