Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to disable client side script in validators
How to disable client side script in validators? Set EnableClientScript to false. 2007-10-24, 5463👍, 0💬
What are JavaScript data types?
What are JavaScript data types? Number, String, Boolean, Function, Object, Null, Undefined. 2008-04-22, 5456👍, 0💬
C question
What is the difference between: myObj *x = new myObj[100]; delete x; and myObj *x = new myObj[100]; delete [] x; 2009-07-16, 5452👍, 0💬
Popular Posts:
What are shared (VB.NET)/Static(C#) variables? Static/Shared classes are used when a class provides ...
What Happens If the UPDATE Subquery Returns Multiple Rows? - Oracle DBA FAQ - Understanding SQL DML ...
Can Java object be locked down for exclusive use by a given thread? Yes. You can lock an object by p...
How To Create an Add-to-My-Yahoo Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
What would you use to compare two String variables - the operator == or the method equals()? You can...