i want to know the complete follow of the page how it store cookies and user info into session and when it get terminate also is it possible to call in-process application to out-process?
Latest Answer: we know Http is an state-less protocol which is required for interaction between clinet and server .so there is an need to remeber state of request raised by an web browser so that web server can recognize you have already previously visited or not.There ...
Why do we binds the data in Web-application not in the Windows-application
Latest Answer: Actually this is not about converting server output into HTML, as asp.net could do it automatically like desktop does.the reason behind the databind() method is giving you an option whether to bind the data or not, as websites are stateless and databinding ...
What methods must be used with the application object to ensure that only one process accross a varaible at a time?
Latest Answer: Copy methods copies both data and structure to another Dataset.Clone copies only Structure. Ie it will create an empty DataSet. ...
Latest Answer: Pointers can still be used by enclosing your code under unsafe section. However instead of pointers we can use referece variables and pointers to function can be achieved by using delegates ...
What I should answer person on interview on question “Can User Control be stored in library?”. The correct answer – Yes, but interviewer demanding that correct answer – No because User controls are not pre-compilable
Yes
Latest Answer: Event represents an action that is done to an object whereas Function represents an action that the object itself is doing. ...
One of the language enhancements in .NET 2.0—available in both VB.NET 2005 and C# 2.0—is support for partial classes. In a nutshell, partial classes mean that your class definition can be split
Latest Answer: partial types are defined using the keyword “partial”. Further, the “partial” keyword should precede the type signature definition. Note that the partial keyword applies to classes, structs, and interfaces, but not enums. It also ...
Latest Answer: It facilitates sequential access to file.The property and method arguments can be any of the properties and methods associated with the TextStream object. Note that in actual usage TextStream is replaced by a variable placeholder representing the ...
Latest Answer: Managed Code is what Visual Basic .NET and C# compilers create. It compiles to Intermediate Language (IL), not to machine code that could run directly on your computer.Managed code runs in the Common Language Runtime. Unmanaged code is what you use to ...
View page << Previous 1 [2] 3 4 5 6 7 8 9 10 Next >>

Go Top