<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date

What’s the use of SmartNavigation property
What’s the use of SmartNavigation property ? It’s a feature provided by ASP.NET to prevent flickering and redrawing when the page is posted back. Note:- This is only supported for IE browser. Project’s who have browser compatibility as requirements have to think some other ways of avoiding flickeri...
2007-10-24, 5339👍, 0💬

Do interface have accessibility modifier
Do interface have accessibility modifier? All elements in Interface should be public. So by default all interface elements are public by default.
2007-10-23, 5336👍, 0💬

What are wait handles ?
.NET INTERVIEW QUESTIONS - What are wait handles ?(What is a mutex object ?) Wait handles sends signals of a thread status from one thread to other thread. There are three kind of wait modes :- * WaitOne. * WaitAny. * WaitAll. When a thread wants to release a Wait handle it can call Set method. You ...
2009-12-22, 5335👍, 0💬

How can we check if all the validation control are valid and proper
How can we check if all the validation control are valid and proper ? Using the Page.IsValid() property you can check whether all the validation are done.
2007-10-24, 5329👍, 0💬

What is a thread? How to use and create a thread in .NET?
What is a thread? How to use and create a thread in .NET? Can we use events with threading? Threads - When we want to run one or more instances of a method, we make use of threading. Suppose we have a method like this... Private Sub OnGoingProcess() Dim i As Integer = 1 Do While True ListBox1.Items....
2009-03-06, 5312👍, 0💬

what is a service contract, operation contract and Data Contract - part 1
what is a service contract, operation contract and Data Contract? - part 1 In this example we will make simple service which displays the total cost of the complete product group. In simple words this service will take three parameters per product cost, number of products and the product name. In re...
2007-11-04, 5302👍, 0💬

What’s the use of “GLOBAL.ASAX” file
What’s the use of “GLOBAL.ASAX” file ? It allows to executing ASP.NET application level events and setting application-level variables.
2007-10-24, 5299👍, 0💬

What is the difference between System.String and System.StringBuilder classes
What is the difference between System.String and System.StringBuilder classes? System.String is immutable; System.StringBuilder can have mutable string where a variety of operations can be performed.
2007-10-23, 5296👍, 0💬

What is a CTS
What is a CTS? In order that two language communicate smoothly CLR has CTS (Common Type System).Example in VB you have “Integer” and in C++ you have “long” these datatypes are not compatible so the interfacing between them is very complicated. In order to able that two different languages can commu...
2007-10-22, 5296👍, 0💬

Which specifications does WCF follow
Which specifications does WCF follow? WCF supports specifications defined by WS-* specifications. WS-* specifications are defined together by Microsoft, IBM, SUN and many other big companies so that they can expose there service through a common protocol. WCF supports all specifications defined we w...
2007-11-04, 5293👍, 0💬

What is ILDASM
If you want to view a Assembly how do you go about it ? When it comes to understanding of internals nothing can beat ILDASM. ILDASM basically converts the whole exe or dll in to IL code. To run ILDASM you have to go to "C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin". Note that i ha...
2007-10-22, 5292👍, 0💬

Is XML meant to replace HTML
Is XML meant to replace HTML? No, they both go together one is for describing data while other is for displaying data.
2007-10-31, 5289👍, 0💬

What order they are triggered
What order they are triggered ? They're triggered in the following order: Application_BeginRequest Application_AuthenticateReques tApplication_AuthorizeRequest Application_ResolveRequestCach eApplication_AcquireRequestStat eApplication_PreRequestHandlerE xecuteApplication_PreSendRequestHead ersAppli...
2007-10-24, 5284👍, 0💬

What are the various ways of hosting a WCF service
What are the various ways of hosting a WCF service? There are three major ways to host a WCF service: Self hosting the service in his own application domain. This we have already covered in the first section. The service comes in to existence when you create the object of ServiceHost class and the s...
2007-11-04, 5279👍, 0💬

How to decide on the design consideration to take a Datagrid
How to decide on the design consideration to take a Datagrid, datalist or repeater ? Many make a blind choice of choosing datagrid directly, but that's not the right way. Datagrid provides ability to allow the end-user to sort, page, and edit its data. But it comes at a cost of speed. Second the dis...
2007-10-24, 5278👍, 0💬

How to implement cloning in .NET ? What is shallow copy and deep copy
How do you implement prototype pattern in .NET? Cloning is achieved by using ICloneable of the System namespace. It has a “Clone” method which actually returns the reference of the same copy. Clone method allows a Shallow copy and not a deep copy. In Shallow copy if you make changes to the cloned ob...
2007-10-24, 5266👍, 0💬

How can we acheive inheritance in VB.NET
How can we acheive inheritance in VB.NET ? Inheritance is achieved by using “Inherits” keyword in VB.NET (For C# it is “:”). Simple Sample is provided in CD for understanding inheritance in folder “WindowsApplicationInheritance ”.There are two classes one is the parent “ClsParent” and second is t...
2007-10-23, 5264👍, 0💬

Which are the important namespaces during localization and globalization
Which are the important namespaces during localization and globalization? There are two most important namespaces: System.Globalization - contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currenc...
2007-11-01, 5259👍, 0💬

What is a valid XML
What is a valid XML? If XML is confirming to DTD rules then it’s a valid XML.
2007-10-31, 5259👍, 0💬

What are COM objects?
Managed Code and Unmanaged Code related ASP.NET - What are COM objects? COM objects are another type of unmanaged code that you can use from .NET assemblies. Because COM is widely used, Visual Studio includes built-in tools for importing and using COM objects within .NET assemblies. Visual Studio al...
2009-04-07, 5234👍, 0💬

What’s the difference between localization and globalization
What’s the difference between localization and globalization? Below are the definition’s which is taken from the Microsoft glossary. Globalization: It is the process of developing a program core whose features and code design are not solely based on a single language or locale. Localization: The pro...
2007-11-01, 5227👍, 0💬

Is versioning applicable to private assemblies
Is versioning applicable to private assemblies? Versioning concept is only applicable to global assembly cache (GAC) as private assembly lie in their individual folders.
2007-10-22, 5223👍, 0💬

How can you specify remoting parameters using Config files
How can you specify remoting parameters using Config files ? Both remoting server and remoting client parameters can be provided through config files. Below is a sample of server config file which provides all remoting parameter values which we where providing through code. &lt;configuration> &a...
2007-10-23, 5222👍, 0💬

In CAO model for client objects to be created by “NEW” keyword
In CAO model for client objects to be created by “NEW” keyword what should we do? Remoting Clients and Remoting Server can communicate because they share a common contract by implementing Shared Interface or Base Class (As seen in previous examples). But according to OOP’s concept we can not create...
2007-10-23, 5222👍, 0💬

<< < 5 6 7 8 9 10 11 12 13 14 15 > >>   Sort: Date