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 comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4675👍, 0💬
What is a Thread ?
.NET INTERVIEW QUESTIONS - What is a Thread ? A thread is the basic unit to which the operating system allocates processor time. 2009-11-03, 4594👍, 0💬
How to disable an HTML object
How to disable an HTML object document.getElementById("myObj ect").disabled= true; 2008-12-16, 4547👍, 0💬
Popular Posts:
What is V model in testing? V model map’s the type of test to the stage of development in a project....
How can I execute a PHP script using command line? Just run the PHP CLI (Command Line Interface) pro...
How To List All Values of Submitted Fields? - PHP Script Tips - Processing Web Forms If you want lis...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...