Usually this problem occurs when IIS is installed after installing .NET.
Solution 1:
Uninstall .NET framework and reinstall it. I followed this procedure.
Solution 2:
Copy and paste this into the Run Command from the Start Menu.
%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i
Second solution has been suggested here, but I myself did not test it.
21 December 2008
Failed to access IIS metabase problem
Posted by আলোর ছটা at 3:19 PM 0 comments
17 December 2008
Set 'float' property of DOM element
Usual syntax of setting any style property of DOM element is
element.style.styleName = value;
For example,
var oDiv = document.createElement('div');
oDiv.style.width = "100px";
oDiv.style.height= "100px";
But as 'float' is a reserved keyword, we CAN'T follow the same convention.
oDiv.style.float = "right"; // wrong
Unfortunately, all browsers don't handle this exception in same way (disgusting!!). So, we have to set two properties like below
oDiv.style.cssFloat = "right"; // for standards compliant browsers
oDiv.style.styleFloat = "right"; // for IE and may be for some other browsers
for more about style you can follow this link.
Posted by আলোর ছটা at 6:06 PM 0 comments
Labels: JavaScript