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 does a socket consists of
What does a socket consists of? The combination of an IP address and a port number is called a socket. 2007-11-11, 6470👍, 0💬
Native Method
What is a native method? A native method is a method that is implemented in a language other than Java. 2007-03-03, 6452👍, 0💬
What is Indexer
What is Indexer ? An indexer is a member that enables an object to be indexed in the same way as an array. 2007-10-23, 6441👍, 0💬
Creating Links to Send Emails
How do I create a link that sends me email? Use a mailto link, for example: Send me email at: <A HREF="mailto:me@fyicenter.com" >me@fyicenter.com</A>. 2007-03-03, 6403👍, 0💬
How can we identify that the Page is PostBack
How can we identify that the Page is PostBack ? Page object has a “IsPostBack” property which can be checked to know that is the page posted back. 2007-10-24, 6402👍, 0💬
Popular Posts:
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...