"OnClick Event"

F

Friedi

In Sharepoint Designer I put on a page ("download.htm") a button giving a
link to a file to be downloaded. Is it possible to programm the button that
with the 'onclick' event the page "Download.htm" is closed.
 
M

Murray

In a window that *you* have opened programmatically (like a pop-up window),
you can use -

onclick="self.close()"
 
Top