Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft IE ActiveX issue

Status
Not open for further replies.

inutelinside

Technical User
Apr 28, 2005
41
US
I think you all heard about the ActiveX related patch issue where you have to click on the object before it gets activated. Is there a work around for this for ASP classic? I have googled for these:
Are there any more else? It would be best if the workaround is ASP classic. Thanks.
 
There is not a solution that can be solved just using ASP. The new ActiveX security 'feature' is triggered client-side, so there is little ASP can do alone.

The only known methods to bypass the security feature is to use javascript. I have not seen client-sdie vbscript solutions but there could be one floating around somewhere. (Don't know why anyone would use client-side vbscript though.)

Here is a detailed resource on the subject.

-a6m1n0

Curiosity only kills cats.
 
Thanks man. I was able to work around on it via javascript.


// Insert <script type="text/javascript" src="iefix.js"></script>
// just below the last object of the page.
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects.outerHTML = objects.outerHTML;
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top