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:
What is GWYUID ?
What is GWYUID ? GWYUID , stands for Gateway User ID and password. Usually like APPLSYSPUB/PUB 2011-11-30, 3400👍, 0💬
Can a function take OUT parameters. If not why?
Can a function take OUT parameters. If not why? yes, IN, OUT or IN OUT. 2011-10-20, 3381👍, 0💬
How do I replace every <TAB> character in a file with a comma?
How do I replace every <TAB> character in a file with a comma? perl -pi.bak -e 's/\t/,/g' myfile.txt 2013-09-18, 3359👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software deve...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...