Rank: Newbie Groups: Member
Joined: 7/30/2008 Posts: 1 Points: 3
|
Hello there,
We are trying implement the image uploader for one of our client website who has purchased the dual package of Image Uploader control. We have been able to get it to work , but we have an issue which we would like to have ready help..
We need to check if Image Uploader control is already installed on the client accessing the webite, is there a way we can track it.. the reason we want to do it is as follow:
We want to show a message if it the Control is not installed and then allow to install, else the message will not be visible and the control - visible.
Look forward to a prompt response to this ...
Regards,
Pradip
|
Rank: Advanced Member Groups: Member
Joined: 9/19/2006 Posts: 353 Points: 180
|
Hi Pradip, Please try this: Code:
var iu = new ImageUploaderWriter("ImageUploader1", 650, 600);
…
alert(iu.getActiveXInstalled());
…
iu.writeHtml();
Best regards, Eugene Kosmin. Aurigma Development Team
|