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

What are benefits and Limitation of using Hidden fields
What are benefits and Limitation of using Hidden fields ? Following are the benefits of using Hidden fields :- ã They are simple to implement. ã As data is cached on client side they work with Web Farms. ã All browsers support hidden field. ã No server resources are required. Following are li...
2007-10-23, 5061👍, 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, 5061👍, 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, 5059👍, 0💬

What is the difference between UNION and UNION ALL SQL syntax
What is the difference between UNION and UNION ALL SQL syntax ? UNION SQL syntax is used to select information from two tables. But it selects only distinct records from both the table, while UNION ALL selects all records from both the tables. Note : Selected records should have same datatype or els...
2007-10-25, 5058👍, 0💬

what are end points, contract, address and bindings
what are end points, contract, address and bindings? The above terminologies are the core on which SOA stands. Every service must expose one or more end points by which the service can be available to the client. End point consists of three important things where, what and how: Contract (What) Contr...
2007-11-04, 5056👍, 0💬

What are basic methods of Dataadapter
What are basic methods of Dataadapter ? There are three most commonly used methods of Dataadapter Fill :- Executes the SelectCommand to fill the DataSet object with data from the data source. It an also be used to update (refresh) an existing table in a DataSet with changes made to the data in the o...
2007-10-24, 5052👍, 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, 5051👍, 0💬

What is UDDI
What is UDDI ? Full form of UDDI is Universal Description, Discovery and Integration. It is a directory that can be used to publish and discover public Web Services. If you want to see more details you can visit the http://www.UDDI.org .
2007-10-23, 5051👍, 0💬

What are benefits and Limitation of using Viewstate for state
What are benefits and Limitation of using Viewstate for state management? Following are the benefits of using Viewstate :- ã No server resources are required because state is in a structure in the page code. ã Simplicity. ã States are retained automatically. ã The values in view state are has...
2007-10-23, 5050👍, 0💬

How can we make a thread sleep for infinite period
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.
2007-10-22, 5050👍, 0💬

How can you reference current thread of the method
How can you reference current thread of the method ? "Thread.CurrentThread" refers to the current thread running in the method."CurrentThread" is a public static property.
2007-10-22, 5050👍, 0💬

How can we know a state of a thread
How can we know a state of a thread? "ThreadState" property can be used to get detail of a thread. Thread can have one or a combination of status.System.Threading. Threadstate enumeration has all the values to detect a state of thread. Some sample states are Isrunning, IsAlive, suspended etc.
2007-10-22, 5045👍, 0💬

How do we create DCOM object in VB6
How do we create DCOM object in VB6 Using the CreateObject method you can create a DCOM object. You have to put the server name in the registry.
2009-03-06, 5043👍, 0💬

Which namespace has threading
Which namespace has threading ? Systems.Threading has all the classes related to implement threading. Any .NET application who wants to implement threading has to import this namespace. Note :- .NET program always has at least two threads running one is the main program and second is the garbage col...
2007-10-22, 5043👍, 0💬

How to add and remove an assembly from GAC?
.NET INTERVIEW QUESTIONS - 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 –i...
2010-03-23, 5042👍, 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, 5039👍, 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, 5039👍, 0💬

What is LeaseTime, SponsershipTime,RenewonCallTime and LeaseManagerPollTime?
What is LeaseTime, SponsershipTime,RenewonCallTim e& LeaseManagerPollTime? The Client Lease Time is the amount of time a network user will be allowed connection to the Router with their current dynamic IP address. Enter the amount of time, in minutes, that the user will be "leased" this dynamic ...
2009-03-06, 5036👍, 0💬

What are the different types of joins? What is the difference between them
What are the different types of joins? What is the difference between them ? INNER JOIN Inner join shows matches only when they exist in both tables.Example, in the below SQL there are two tables Customers and Orders and the inner join in made on Customers Customerid and Orders Customerid.So this SQ...
2007-10-25, 5036👍, 0💬

What is the use of dataadapter
What is the use of dataadapter ? These are objects that connect one or more Command objects to a Dataset object. They provide logic that would get data from the data store and populates the tables in the DataSet, or pushes the changes in the DataSet back into the data store. ? An OleDbDataAdapter ob...
2007-10-24, 5036👍, 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, 5036👍, 0💬

What is ObjRef object in remoting
What is ObjRef object in remoting ? All Marshal() methods return ObjRef object.The ObjRef is serializable because it implements the interface ISerializable, and can be marshaled by value. The ObjRef knows about :- ã location of the remote object ã host name ã port number ã object name.
2007-10-23, 5030👍, 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, 5023👍, 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, 5018👍, 0💬

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