Recent Answers
What is difference between string and stringbuilder?
Vinit Kumar answered: string -the object of this class are immutable i.e. we can not change any character that is c....
How Just in Time Compiler Works?
Johndecruse answered: When you execute the program, i.e. the intermediate code, the Just-In-Time (JIT) compiler com....
If I have an external aspx page? How do u integrate with existing sharepoint site? I want to publish it over t....
Satyen Kasturi answered: what you want is to use Application pages. These are located in Layouts directory. Within ....
where are the different file to content query webpart? To design a page?
uday answered: content query webpart displays a dynamic view of sites ,pages
have worked in BDC?
Mike answered: BDC stands for Business Data Catalog. It is a new feature introduced in Microsoft Office SharePoint ....
How do I connect database and infopath in sharepoint?
jiten_keswani answered: \\.\pipe\mssql$microsoft## ssee\sql\query (for Sharepoint 2007) or \\.\pipe\mssql$sharepoin....
What's new in .Net Framework 3.0?
Daniel answered: Visual Studio 2008 and the .NET Framework 3.5 enable developers to rapidly create connected applic....
What's new in .Net Framework 3.0?
resumedocket answered: WPF provides new features for making more interesting, effective, and dynamic user interface....
What is "out" keyword in C#?
Johndecruse answered: “out Keyword” in C#.out keyword is used for passing a variable for output purpose. It has sam....
What is a SharePoint Site Collection and how can we create it?
resumedocket answered: To create a SharePoint site, you must be a member of a site group that has the Create Subsit....
123456789
JSP Interview Questions and Answers
JSP : How can we import a Java package in a JSP page?

How can we import a Java package in a JSP page?

Following page directive is used to import Java package in a JSP page: <%@ page import="....
Category: JSP Date: 10/30/2009 6:01:00 AM
JSP : How can I implement a thread-safe JSP page?

How can I implement a thread-safe JSP page?

You can make your JSP page thread-safe by having them implement the SingleThreadModel interface. Thi....
Category: JSP Date: 10/30/2009 5:54:43 AM
JSP : What are the life-cycle methods of JSP?

What are the life-cycle methods of JSP?

JSP page is processed into a servlet class which implements the HttpJspPage interface of the javax.s....
Category: JSP Date: 9/17/2009 6:38:31 AM
JSP : What approaches are used for Session Management in JSP ?

What approaches are used for Session Management in JSP ?

Following approches can be used for Session Management in JSP: 1) Cookies: Cookies are small text....
Category: JSP Date: 9/17/2009 6:24:36 AM
JSP : What types of comments are available in the JSP?

What types of comments are available in the JSP?

There are two types of comments are available in JSP: Hidden comments and Output comments. Hidden c....
Category: JSP Date: 9/16/2009 5:27:34 AM
JSP : Is JSP technology extensible?

Is JSP technology extensible?

JSP technology is extensible through the development of custom actions or tags, which are encapsulat....
Category: JSP Date: 9/14/2009 5:36:10 AM
JSP : What is JSP?

What is JSP?

JSP is a technology that combines HTML/XML markup languages and elements of Java programming Languag....
Category: JSP Date: 9/14/2009 5:34:10 AM
JSP : What are the various implicit objects used in JSP?

What are the various implicit objects used in JSP?

Implicit objects are available for the use in JSP pages without being declared. These objects are pa....
Category: JSP Date: 9/14/2009 5:29:09 AM