I have a page on a server at a remote location that only displays if it is accessed internally.
Here’s how it works, the page has a button and a list of files, when the button is clicked the script creates a csv file from various database tables and writes it to a folder on the server. The page then refreshes with the new file in the list.
On the server this is fine but when I access the site externally I have the following problem:
- Clicking the button causes the script to run, so far so good.
- The page is blank on refresh.
- The source for the page however, is identical to that of the page source when loaded correctly on the server.
- The file is created so it can’t be a folder permissions thing.
Any ideas?
Unfortunately I can’t give you any code, it’s work related and we don’t share. This is as far as it gets:
<body>
<script language="Javascript">
function titleBar_Dis
You’ve not given us much to go on.
I would suggest using Fiddler to view the requests both times. Hopefully you will see something different.
If not does this happen in all browsers or is it a browser specific thing?