| |
rhl150
Posts: 29
Score: 0
Joined: 5/23/2001
From: New Zealand
Status: offline
|
Hi Dean, Hope this is what you are looking for The <COMPONENT> element allow us to give a name to the HTML component that can be used to access properties and methods though scripting <COMPONENT NAME="Crypted"> <PROPERTY NAME="CryptedKey" PUT="PutCK" GET="GetCK"> <SCRIPT LANGUAGE="VBScript"> Dim cKey Function PutCK(ByVal newValue) cKey = newValue Xor 43960 End Function Function GetCK() GetCK = cKey Xor 43960 End Function </SCRIPT> </COMPONENT>
|
|