<< < 12 13 14 15 16 17 18 19 20 21 22 > >>   Sort: Date

What is project management?
What is project management Applying knowledge, skills, tools, techniques in project and deliver project deliverables is a short definition of project management.It’s basically managing project time, cost and scope.
2007-10-30, 4832👍, 0💬

How can we use dataadapter to fill a dataset ?
What are the steps involved to fill a dataset ? Sample code is provided in “WindowsDataSetSample” folder in CD.”LoadData” has all the implementation of connecting and loading to dataset. This dataset is finally bind to a ListBox. Below is the sample code. Private Sub LoadData() Dim strConnectionStr...
2007-10-24, 4829👍, 0💬

what is a service class
what is a service class?
2007-11-04, 4825👍, 0💬

What is WSDL
What is WSDL? Web Service Description Language (WSDL)is a W3C specification which defines XML grammar for describing Web Services.XML grammar describes details such as:- ã Where we can find the Web Service (its URI)? ã What are the methods and properties that service supports? ã Data type suppo...
2007-10-23, 4815👍, 0💬

What is reflection
What is reflection? All .NET assemblies have metadata information stored about the types defined in modules. This metadata information can be accessed by mechanism called as “Reflection”.System. Reflection can be used to browse through the metadata information. Using reflection you can also dynamica...
2007-10-22, 4815👍, 0💬

How do I sign out in forms authentication
How do I sign out in forms authentication ? FormsAuthentication.Signout()
2007-10-24, 4810👍, 0💬

What is the difference between a HAVING CLAUSE and a WHERE CLAUSE
What is the difference between a HAVING CLAUSE and a WHERE CLAUSE? You can use Having Clause with the GROUP BY function in a query and WHERE Clause is applied to each row before they are part of the GROUP BY function in a query.
2007-10-25, 4799👍, 0💬

What are benefits and limitations of using Hidden frames?
.NET INTERVIEW QUESTIONS - What are benefits and limitations of using Hidden frames? Following are the benefits of using hidden frames: * You can cache more than one data field. * The ability to cache and access data items stored in different hidden forms. * The ability to access JScript® variable v...
2009-07-14, 4796👍, 0💬

Can you explain the difference between an ADO.NET Dataset and an ADO Recordset
Can you explain the difference between an ADO.NET Dataset and an ADO Recordset? There two main basic differences between recordset and dataset ? With dataset you an retrieve data from two databases like oracle and sql server and merge them in one dataset , with recordset this is not possible ? All r...
2007-10-24, 4796👍, 0💬

What is DTS
What is DTS? DTS is used to pull data from various sources into the star schema.
2007-10-25, 4788👍, 0💬

What are different types of JIT
What are different types of JIT ? Note :- This question can only be asked when the interviewer does not know what he wants. It was asked to me in one of interview and for 15 minutes he was roaming around the same question in order to get answer from me (requirement was for a simple database project)...
2007-10-22, 4788👍, 0💬

How can we call methods in remoting Asynchronously
How can we call methods in remoting Asynchronously All previous examples are a synchronous method calls that means client has to wait until the method completes the process. By using Delegates we can make Asynchronous method calls.
2007-10-23, 4784👍, 0💬

What is Reference counting in COM ?
.NET INTERVIEW QUESTIONS - What is Reference counting in COM ? Reference counting is a memory management technique used to count how many times an object has a pointer referring to it. The first time it is created, the reference count is set to one. When the last reference to the object is nulled, t...
2010-01-19, 4780👍, 0💬

What is DISCO
What is DISCO ? DISCO is the abbreviated form of Discovery. It is basically used to club or group common services together on a server and provides links to the schema documents of the services it describes may require.
2007-10-23, 4780👍, 0💬

What is Multi-tasking
What is Multi-tasking ? It’s a feature of modern operating systems with which we can run multiple programs at same time example Word, Excel etc.
2007-10-22, 4779👍, 0💬

Passport authentication
Passport authentication Passport authentication lets you to use Microsoft’s passport service to authenticate users of your application. If your users have signed up with passport, and you configure the authentication mode of the application to the passport authentication, all authentication duties a...
2007-10-24, 4778👍, 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, 4778👍, 0💬

How is resource files actually used in project
How is resource files actually used in project?
2007-11-01, 4776👍, 0💬

What the way to stop a long running thread
What the way to stop a long running thread ? Thread.Abort() stops the thread execution at that moment itself.
2007-10-22, 4775👍, 0💬

What is Suspend and Resume in Threading
What is Suspend and Resume in Threading ? It is Similar to Sleep and Interrupt. Suspend allows you to block a thread until another thread calls Thread.Resume. The difference between Sleep and Suspend is that the latter does not immediately place a thread in the wait state. The thread does not suspen...
2007-10-22, 4772👍, 0💬

What are the precautions you will take in order that StateServer Mode
What are the precautions you will take in order that StateServer Mode work properly ? Following are the things to remember so that StateServer Mode works properly :- ã StateServer mode session data is stored in a different process so you must ensure that your objects are serializable. ã &lt;m...
2007-10-23, 4767👍, 0💬

What is the software you have used for project management
What is the software you have used for project management? Many companies have there own software defined. There are many project management software available at this moment in market but this can vary from company to company , worst it can very from project to project. But Microsoft project is the...
2007-10-30, 4765👍, 0💬

What is scavenging
What is scavenging ? When server running your ASP.NET application runs low on memory resources, items are removed from cache depending on cache item priority. Cache item priority is set when you add item to cache. By setting the cache item priority controls the items scavenging are removed first.
2007-10-23, 4764👍, 0💬

Did VB6 support multi-threading
Did VB6 support multi-threading ? While VB6 supports multiple single-threaded apartments, it does not support a freethreading model, which allows multiple threads to run against the same set of data.
2007-10-22, 4764👍, 0💬

<< < 12 13 14 15 16 17 18 19 20 21 22 > >>   Sort: Date