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 put a close window link on a page?
How to put a "close window" link on a page? <a href='javascript:window.close( )'class='mainnav'> Close </a> 2008-10-07, 4677👍, 0💬
What looping structures are there in JavaScript?
What looping structures are there in JavaScript? for, while, do-while loops, but no foreach. 2008-09-30, 4878👍, 0💬
How about 2+5+8?
How about 2+5+"8"? Since 2 and 5 are integers, this is number arithmetic, since 8 is a string, it’s concatenation, so 78 is the result. 2008-09-16, 5185👍, 0💬
What is a prompt box?
What is a prompt box? A prompt box allows the user to enter input by providing a text box. 2008-09-03, 5052👍, 0💬
What does "1"+2+4 evaluate to?
What does "1"+2+4 evaluate to? Since "1" is a string, everything is a string, so the result is a string of "124". 2008-07-29, 6040👍, 0💬
What boolean operators does JavaScript support?
What boolean operators does JavaScript support? &&, || and ! 2008-07-29, 5357👍, 0💬
Popular Posts:
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files ...
What Happens to Your Transactions When ERROR 1213 Occurred? - MySQL FAQs - Transaction Management: C...
What is continuous and staged representation? CMMI contains 25 key process areas which organization ...
How To Retrieve the Count of Updated Rows? - Oracle DBA FAQ - Working with Database Objects in PL/SQ...
How can I implement a variable field width with printf? That is, instead of something like %8d, I wa...