The No. 1 bug in Ubuntu was reported in 2004. Four years later, this bug is still listed as the No. 1 and is still not fixed. I don’t believe this bug can ever be fixed. 🙂
Daily Archives: November 14, 2008
2 posts
Say if you are using the following JavaScript function to alert user if a TextBox is empty: <script language=”JavaScript” type=”text/javascript”> function validateInput() { if (document.getElementById(‘<%=TextBox1.ClientID%>’).value=””) { alert(“The text box is empty!”); } } </script> If the above code is embedded in the aspx page, it works as expected. But if you put the above function in a .js file and include it in your aspx file, you will get a “Object expected” error in IE, […]