Posted: Wed Dec 05, 2007 2:56 pm sending updated file list to customers local
Hi dear
Iwant to know what should I do...
ex...
I have e price list and update it weekly and want to write a program at the local my customer the same price list viewer...
But when my customer open the internet connection or when I update the list on online my customer must see the warning at theire computer as a warning..
And if hi does click at the update button on warning windows it must download the pricelist...
Joined: 24 Jun 2006 Posts: 362 Location: Fort Walton Beach, FL, USA
Posted: Thu Dec 06, 2007 5:43 pm
You can do this with JavaScript.
Code:
<script type="text/JavaScript">
<!--
function Download(){
if(confirm("Are You Sure You Want To Download The Price List?"))
window.location = "THE LOCATION ON YOUR SERVER OF THE PRICELIST";
}
-->
</script>
<a href="javascript:download();">LINK TEXT</a>
Replace the "LINK TEXT" with what you want the link to say and "THE LOCATION ON YOUR SERVER OF THE PRICELIST" with where on your server the price list is, something like "downloads/pricelist.exe".
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum