Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What’s the use of “GLOBAL.ASAX” file
What’s the use of “GLOBAL.ASAX” file ? It allows to executing ASP.NET application level events and setting application-level variables. 2007-10-24, 4915👍, 0💬
What is the use of @ OutputCache directive in ASP.NET
What is the use of @ OutputCache directive in ASP.NET? It is basically used for caching. See more for Caching chapter. 2007-10-24, 4428👍, 0💬
Where is ViewState information stored
Where is ViewState information stored ? In HTML Hidden Fields. 2007-10-24, 4384👍, 0💬
What is the use of @ Register directives
What is the use of @ Register directives ? @Register directive informs the compiler of any custom server control added to the page. 2007-10-24, 4978👍, 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, 5417👍, 0💬
Popular Posts:
Can event’s have access modifiers ? Event’s are always public as they are meant to serve every one r...
What are shared (VB.NET)/Static(C#) variables? Static/Shared classes are used when a class provides ...
What is SMC approach of estimation?
Describe in detail Basic of SAO architecture of Remoting? For these types of questions interviewer e...
What is the difference between strings and character arrays? A major difference is: string will have...