Thanks,
Matt
would you really want that every website could open applications on your
machine by a simple click? i don't think so.
hth andreas
(use file:// prot)
--
collect xul annotations: http://xul.andreashalter.ch/
Made some quick changes to my asp page, then downloaded Postwrap
(http://spidean.mckenzies.net/modules.php?op=modload&name=PostWrap&file=inde
x&page=http://spidean.mckenzies.net/modules/PostWrap/docs/&height=3500 )
Sent the link to the page via postwrap and all is happy.
Thanks for your comments. Below is the asp page to do the work.
Thanks,
Matt
Menublock link=
modules.php?op=modload&name=PostWrap&file=index&page=openlink.asp?link=notep
ad%2Eexe
<%
Response.expires = 1
Response.expiresabsolute = Now() - 1
Response.addHeader "pragma", "no-cache"
Response.addHeader "cache-control", "private"
Response.CacheControl = "no-cache"
response.clear
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<OBJECT CLASSID="clsid:ABCDEFG" ID="axOpenFile"
CODEBASE="controls\axOpenFile.CAB#version=1,0,0,1">
<PARAM NAME="DebugIt" VALUE="False">
</OBJECT>
</head>
<body>
<%
response.buffer=true
'get link
link = request.querystring("link")
if link="" or isnull(link) then
'link is blank
else
'response.clear
'Server.Transfer "axopenfile.asp?link=" & server.urlencode(link)
%>
<SCRIPT LANGUAGE="VBScript">
call axOpenFile.OpenFile( "<%=link%>")
</SCRIPT>
<%
end if
%>
</body>
</html>
"andreas halter" <ne...@andreashalter.ch> wrote in message
news:badci1$1k51$1...@innferno.news.tiscali.de...