<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Date

What is a project baselines
What is a project baselines ? It defines a logical closure of any deliverable or cycle. Example you have completed the requirement phase with sign off from the client on the requirement document.So you put a baseline and say that further any changes to this document are change request. Versioning of...
2007-10-30, 4699👍, 0💬

How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures
How do we use stored procedure in ADO.NET and how do we provide parameters to the stored procedures? ADO.NET provides the SqlCommand object which provides the functionality of executing stored procedures. Note :- Sample code is provided in folder “WindowsSqlClientCommand”. There are two stored proce...
2007-10-24, 4698👍, 0💬

Can we change the order in a select query with a specified collation sequence
Can we change the order in a select query with a specified collation sequence? Yes we can specify a collate sequence in the order by clause. That will change the sort according to the collation defined in the order by claused. ORDER BY { order_by_expression [ COLLATE collation_name ] [ ASC | DESC ] ...
2007-11-02, 4695👍, 0💬

What are the various ways of authentication techniques in ASP.NET
What are the various ways of authentication techniques in ASP.NET? Selecting an authentication provider is as simple as making an entry in the web.config file for the application. You can use one of these entries to select the corresponding built in authentication provider: ã &lt;authentication...
2007-10-24, 4695👍, 0💬

What is Dataset object
What is Dataset object? The DataSet provides the basis for disconnected storage and manipulation of relational data. We fill it from a data store,work with it while disconnected from that data store, then reconnect and flush changes back to the data store if required.
2007-10-24, 4692👍, 0💬

What are the various objects in Dataset
What are the various objects in Dataset ? Dataset has a collection of DataTable object within the Tables collection. Each DataTable object contains a collection of DataRow objects and a collection of DataColumn objects. There are also collections for the primary keys, constraints, and default values...
2007-10-24, 4687👍, 0💬

What are levels in dimensions
What are levels in dimensions ? Dimensions are arranged in hierarchical levels, with unique positions within each level. For example, a time dimension may have four levels, such as Year, Quarter, Month, and Day. Or the dimension might have only three levels, for example, Year, Week, and Day. The val...
2007-10-25, 4686👍, 0💬

How do we enable tracing
How do we enable tracing ? &lt;%@ Page Trace="true" %>
2007-10-24, 4686👍, 0💬

How to add and remove an assembly from GAC
How to add and remove an assembly from GAC? There are two ways to install .NET assembly in GAC:- ¡Ì Using Microsoft Installer Package. You can get download of installer from http://www.microsoft.com. ¡Ì Using Gacutil. Goto ¡°Visual Studio Command Prompt¡± and type ¡°gacutil ¨Ci (assembly_name)...
2007-10-22, 4686👍, 0💬

What is file extension of Webservices
What is file extension of Webservices ? .ASMX is extension for Webservices. Note :- After this we are going to deal with a sample of webservice. In VS2005 webproject is created from the menu itself as compared to 2003 where it was present in the explorer.
2007-10-23, 4683👍, 0💬

Are CAO stateful in nature ?
.NET INTERVIEW QUESTIONS - Are CAO stateful in nature ? Yes. In CAO remoting model client creates a instance on server and instance variable set by client on server can be retrieved again with correct value.
2009-08-26, 4682👍, 0💬

What are the situations you will use a Web Service and Remoting in projects
What are the situations you will use a Web Service and Remoting in projects? Well “Web services” uses “remoting” concepts internally. But the major difference between “web service” and “remoting” is that “web service” can be consumed by clients who are not .NET platform. While remoting you need ...
2007-10-24, 4681👍, 0💬

How can we make a thread sleep for infinite period ?
.NET INTERVIEW QUESTIONS - How can we make a thread sleep for infinite period ? You can also place a thread into the sleep state for an indeterminate amount of time by calling Thread.Sleep (System.Threading.Timeout.Infi nite).To interrupt this sleep you can call the Thread.Interrupt method.
2009-11-24, 4680👍, 0💬

.NET Remoting versus Distributed COM ?
.NET Remoting versus Distributed COM ? In the past interprocess communication between applications was handled through Distributed COM, or DCOM. DCOM works well and the performance is adequate when applications exist on computers of similar type on the same network. However, DCOM has its drawbacks i...
2009-03-19, 4680👍, 0💬

P)Can you show a simple code showing file dependency in cache
P)Can you show a simple code showing file dependency in cache ? Partial Class Default_aspx Public Sub displayAnnouncement() Dim announcement As String If Cache(“announcement”) Is Nothing Then Dim file As New _ System.IO.StreamReader _ (Server.MapPath(“announcement. txt”))announcement = file.ReadToE...
2007-10-23, 4679👍, 0💬

How will implement Page Fragment Caching
How will implement Page Fragment Caching ? Page fragment caching involves the caching of a fragment of the page, rather than the entire page. When portions of the page are need to be dynamically created for each user request this is best method as compared to page caching. You can wrap Web Forms use...
2007-10-23, 4676👍, 0💬

What is dot Net Remoting?
What is dot Net Remoting? NET Remoting is an enabler for application communication. It is a generic system for different applications to use to communicate with one another. .NET objects are exposed to remote processes, thus allowing interprocess communication. The applications can be located on the...
2009-03-11, 4675👍, 0💬

How can you use Hidden frames to cache client data
How can you use Hidden frames to cache client data ? This technique is implemented by creating a Hidden frame in page which will contain your data to be cached. &lt;FRAMESET cols="100%,*,*"> &lt;FRAMESET rows="100%"> &lt;FRAME src="data_of_frame1.html">& ;lt;/FRAMESET>&lt;FRAME sr...
2007-10-23, 4675👍, 0💬

How can we add relation’s between table in a DataSet
How can we add relation’s between table in a DataSet ? Dim objRelation As DataRelation objRelation=New DataRelation("CustomerAddresse s",objDataSet.Tables("Customer ").Columns("Custid"),objDataSet.Tables("Addresses" ).Columns("Custid_fk"))objDataSet.Relations.Add(objRe lation)Relations can be added b...
2007-10-24, 4669👍, 0💬

How can we save all data from dataset
How can we save all data from dataset ? Dataset has “AcceptChanges” method which commits all the changes since last time “Acceptchanges” has been executed.
2007-10-24, 4669👍, 0💬

What is Asynchronous One-Way Calls
What is Asynchronous One-Way Calls ? One-way calls are a different from asynchronous calls from execution angle that the .NET Framework does not guarantee their execution. In addition, the methods used in this kind of call cannot have return values or out parameters. One-way calls are defined by usi...
2007-10-23, 4669👍, 0💬

What are benefits and limitations of using Cookies
What are benefits and limitations of using Cookies? Following are benefits of using cookies for state management :- ã No server resources are required as they are stored in client. ã They are light weight and simple to use Following are limitation of using cookies :- ã Most browsers place a 409...
2007-10-23, 4668👍, 0💬

What is Windows CardSpace
What is Windows CardSpace ? It was previously known by its codename InfoCard. It is a framework by microsoft which securely stores digital identities of a user and provides a unified interface to choose the identity for a particular transaction, such as logging in to a website. Windows Card Space is...
2007-11-03, 4659👍, 0💬

what are the important principles of SOA
what are the important principles of SOA (Service oriented Architecture)? WCF is based on SOA. All big companies are playing big bets on SOA. So how can Microsoft remain behind? So in order to implement SOA architecture easily you need to use WCF. SOA is based on four important concepts: Boundaries ...
2007-11-04, 4658👍, 0💬

<< < 15 16 17 18 19 20 21 22 23 24 25 > >>   Sort: Date