gnanakumar 0 Newbie Poster

We have developed a web-based application with JSP as front-end. Recently we observed that after taking one of the Windows Updates, few buttons in our application are not working. If I uninstall this particular update, buttons are working fine. When I say it is not working, it means that onclick action is not taking place.

Windows Update: KB956390

Also, our buttons are developed in VML.

I've given below some code snippets:

===<html xmlns:zoniac="ZON">
.............
.............
.............
<zoniac:roundrect class="zoniac_roundButton" arcsize="0.9" fillcolor="#245f91" style='width:95px;cursor:hand' href="javascript:btnLinkClick('accountsNewCompany',document.accfrm)" strokecolor="#245f91"  onselectstart="return false">New Account</zoniac:roundrect>
.............
.............
.............
</html>

Also, If I change the above "href" action into "onClick" event, it's working fine. But I want the action to be with href, since I cannot make this kind of change all over my application.

<zoniac:roundrect class="zoniac_roundButton" arcsize="0.9" fillcolor="#245f91" style='width:95px;cursor:hand' onClick="javascript:btnLinkClick('accountsNewCompany',document.accfrm)" strokecolor="#245f91"  onselectstart="return false">New Account</zoniac:roundrect>







===zoniac\:*
{   behavior: url(#default#VML)
}
.zoniac_roundButton
{   text-align:center;
padding-top:3px;
color:white;
font:bold 11px tahoma;
height:17px;
}