Everybody,
I need a way to copy a some text to the clipboard.
I am using VBscript for an ASP page. This code will be run at the server and not at the client.
I have tried to use the following
Set objClipboard = CreateObject("Clipboard.Application"
objClipboard.Clear
objClipboard.SetText "This is a test"
Set objClipboard = Nothing
I get an the following error:
Error Type:
Microsoft VBScript runtime (0x800A01AD)
ActiveX component can't create object: 'Clipboard.Application'
I need a way to copy a some text to the clipboard.
I am using VBscript for an ASP page. This code will be run at the server and not at the client.
I have tried to use the following
Set objClipboard = CreateObject("Clipboard.Application"
objClipboard.Clear
objClipboard.SetText "This is a test"
Set objClipboard = Nothing
I get an the following error:
Error Type:
Microsoft VBScript runtime (0x800A01AD)
ActiveX component can't create object: 'Clipboard.Application'