Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Screen Freezing

Status
Not open for further replies.

markSaunders

Programmer
Jun 23, 2000
196
GB
I have a web-based timesheet system that uses ColdFusion (Server 5) and SQL 2000. When a user selects a link on a page that causes another page to display the resulting page is not displayed until the mouse is moved over an object that exists on the resulting page or the mouse button is clicked anywhere on the page.

That is, if I select a link from page 1 and page 2 only contains a text box in the upper left - I see only page 1 until the mouse moves over where the text box on page to is/should be!

Strange? A Little!!

This problem exists on IE5 and IE5.5 and any suggestions would be most appreciated!

Cheers Mark Saunders :)
 
That's pretty funky. It sounds like some kind of html issue. Does it not happen with IE 6, Netscape, or Opera? Can you post a link to it?

Just a thought -- there is an option in IE (under Advanced in the Tools menu) called Enable Page Transitions. Maybe try turning that on/off and see if that is doing it.


Tim P.
 
can't provide a link, but the start of the html is

also, not yet tested in NN or other as the environment is IE specific.

cheers
m
Code:
<!-- start include: ts_header -->
<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<HTML>
<HEAD><TITLE>INRANET1: Chronos (Mark Saunders) - Administration</TITLE><!-- CSS style links -->
	<link href=&quot;/stylesheets/stylesheetChronos.css&quot; rel=&quot;STYLESHEET&quot; type=&quot;text/css&quot; media=&quot;screen&quot;>

	<SCRIPT LANGUAGE=&quot;JavaScript1.2&quot; SRC=&quot;/stylesheets/displaystyles.js&quot;> </script>
<!-- CSS style links end -->
</HEAD>
<BODY>
<table width=750>
<tr>
<td colspan=&quot;15&quot; valign=&quot;top&quot; nowrap>
<!-- end include: ts_header -->

<!-- start include: ts_menu -->










<TABLE width=&quot;100%&quot;>
	<TR>
		<TD>
			<A class=&quot;topnav&quot; href=&quot;[URL unfurl="true"]http://intranet&quot;>Home</A>[/URL] | 
			<A class=&quot;topnav&quot; href=&quot;ts.cfm&quot;><span title=&quot;Open current week timesheet&quot;>TimeSheets</span></A> | 

			<span class=&quot;topnav&quot;>Expenses | Reports | </span> 
			<A class=&quot;topnav&quot; href=&quot;Admin.cfm&quot;>Administration</A> | 


</TD>
	</TR>
	<tr>
		<td bgcolor=&quot;#006699&quot;><span class=&quot;pagetitle&quot;>Administration</span><br></td>
	</tr>
</TABLE>
<!-- end include: ts_menu -->
Mark Saunders :)
 
It's hard to say, without knowing what is in the style sheets. Looks like you have a js script that is writing some inline styles and you have a link to one as well. I'm no css guru, but I am curious about the media=&quot;screen&quot; attribute. While it shouldn't be a problem, I wonder if IE 5.x has a problem with it.

My first guess would be to start poking around with the style sheets -- maybe remove the link to the style sheets temporarily to determine if in fact it is causing the problem. You are not getting any errors or anything -- so I don't think it is a CF issue. You may try posting in one of the HTML or CSS forums and see if someone there has a better idea.

Good Luck!
tim P.
 
cheers for the reply.

remove the media= statement but to no avail. the only thing i can see that this page does different than another one that doesnt appear to demonstrate this phenomina is that the whole content of the page depends on a parameter such that

Code:
<cfif isAdmin>
  <tr class=&quot;lined&quot;>
  .
  .
<cfelse>
  <p>You really shouldn't be here!</p>
</cfif>

have posted to css/html to see if anyone else has seen this - strange!

cheers

Mark Saunders :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top