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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internet Explorer - Differences on Windows 98/NT

Status
Not open for further replies.

jtrapat1

Programmer
Jan 14, 2001
137
US
We have an intranet application with C/CGI scripting written against a DB2 database.
On one of the HTML pages, we display a table with several columns of data in a grid.
At the top of the table we pass a different WHERE clause to the server so that the columns can be sorted - ASC or DESC.
The columns will be sorted based on the button on top of the column chosen.
Here's the problem:
=-----------------------------------
This code runs fine on Windows 98 (button toggles back and forth and sorts on the appropriate column)
But on windows NT, there is a delay or lag in the server understanding the statement passed.
--------------
It's like NT doesn't understand the submit() from the form.

Has anyone had a similar problem with running C/CGI on different platforms?
If this is the wrong group for this question, please let me know.
Thanks in Advance

John
 
Maybe it's the caching of that page you have to send the folowing headers

Pragma: no-cache
Cache-Control: no-cache
Content-type: text/html

Pragma: no-cache is the old method and Cache-control:......
is newer but to be sure use them both some browsers doesn't support one of them
Are you using the same browsers on those computers(same version)?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top