This problem is not resolved still. The following is not working in IE:
<li><arunat="server"disabled="disabled"id="aResponsible"href="#divResponsible">Responsible Parties</a></li>
If I take out the runat="server", the following works fine:
<li><ahref="#divResponsible">Responsible Parties</a></li>
Here is the code behind:
privatevoid DisplayResponsibleTab(bool isRisk)
{
if(isRisk)
aResponsible.Attributes["disabled"] = null;
else
aResponsible.Attributes["disabled"] = "disabled";
}
Please suggest a workaround so I don't have to use runat="server"
Thanks,
AM