Hi to All,
I have this problem:
with IE I can open a file 1.txt with the code posted, but with FF 3.5.2 it happens nothing and in the console error appears the message:
Security problem: the contents in http://fwws01329528/test.asp (the name of the server and the page loaded) can' t load or have links that cross-refer to file://///sif5/tmp/1.txt
In which way it' s possible to solve the problem ??
Thanks a lot in advance !!!
html>
<head>
<title>TEST</title>
<Script Language="JavaScript">
function notify(n) {
if (n==1) {
window.open('file://///sif5/tmp/1.txt'); }
}
</script>
</head>
<body>
<div align="center">
<table>
<tr>
<form method="POST" webbot-onSubmit language="JavaScript" name="FrontPage_Form2">
<td width="243"
style="border-left-style:none; border-left-width:medium; border-right-style:solid; border-right-width:1; border-top-style:solid; border-top-width:1; "
height="39">
<input type="submit" style="width:66px;" value="Appr" name="Send" onClick="notify(1)">
</td>
</tr>
</form></table>
</div>
</body>
</html>