<< < 17 18 19 20 21 22 23 24 25 26 27 > >>   Sort: Date

Where is version information stored of an assembly
Where is version information stored of an assembly ? Version information is stored in assembly in manifest.
2007-10-22, 4876👍, 0💬

Security in Remoting ?
Security in Remoting ? Security is of paramount importance to any distributed application. Although the .NET Remoting infrastructure does not define any security features itself, because distributed applications are managed code they have full access to all of the .NET security features. In addition...
2009-03-24, 4874👍, 0💬

What are the situations you will use singleton architecture in
What are the situations you will use singleton architecture in remoting ? If all remoting clients have to share the same data singleton architecture will be used.
2007-10-23, 4867👍, 0💬

What is use of interlocked class?
What is use of interlocked class? Interlocked class provides methods by which you can achieve following functionalities :- * Increment Values. * Decrement values. * Exchange values between variables. * Compare values from any thread. in a synchronization mode. Example :- System.Threading.Interlocked.. .
2009-03-06, 4866👍, 0💬

Explain the differences between Server-side and Clientside code
Explain the differences between Server-side and Clientside code? Server side code is executed at the server side on IIS in ASP.NET framework, while client side code is executed on the browser.
2007-10-24, 4865👍, 0💬

What is Cache Callback in Cache ?
.NET INTERVIEW QUESTIONS - What is Cache Callback in Cache ? Cache object is dependent on its dependencies. Example file based, time based etc. Cache items remove the object when cache dependencies change.ASP.NET provides capabilityto execute a callback method when that item is removed from cache.
2009-05-05, 4859👍, 0💬

How do we generate Satellite assemblies
How do we generate Satellite assemblies?
2007-11-01, 4854👍, 0💬

What are dimensions in OLAP
What are dimensions in OLAP ? Dimensions are the categories of data analysis. For example, in a revenue report by month by sales region, the two dimensions needed are time and sales region. Typical dimensions include product, time, and region.
2007-10-25, 4851👍, 0💬

What is a Web Service
What is a Web Service ? Web Services are business logic components which provide functionality via the Internet using standard protocols such as HTTP. Web Services uses Simple Object Access Protocol (SOAP) in order to expose the business functionality.SOAP defines a standardized format in XML which ...
2007-10-23, 4849👍, 0💬

What is a Managed Code
What is a Managed Code? Managed code runs inside the environment of CLR i.e. .NET runtime. In short all IL are managed code. But if you are using some third party software example VB6 or VC++ component they are unmanaged code as .NET runtime (CLR) does not have control over the source code execution...
2007-10-22, 4845👍, 0💬

What the way to stop a long running thread ?
.NET INTERVIEW QUESTIONS - What the way to stop a long running thread ? Thread.Abort() stops the thread execution at that moment itself.
2009-12-01, 4830👍, 0💬

How can you implement Page Fragment Caching ?
.NET INTERVIEW QUESTIONS - How can you 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 cachi...
2009-05-26, 4830👍, 0💬

What is Difference between NameSpace and Assembly
What is Difference between NameSpace and Assembly? Following are the differences between namespace and assembly : Assembly is physical grouping of logical units. Namespace logically groups classes. Namespace can span multiple assembly.
2007-10-22, 4827👍, 0💬

What are different types of caching using cache object of ASP.NET?
.NET INTERVIEW QUESTIONS - What are different types of caching using cache object of ASP.NET? You can use two types of output caching to cache information that is to be transmitted to and displayed in a Web browser: * Page Output Caching Page output caching adds the response of page to cache object....
2009-05-12, 4826👍, 0💬

What is Multi-threading
What is Multi-threading ? Multi-threading forms subset of Multi-tasking. Instead of having to switch between programs this feature switches between different parts of the same program. Example you are writing in word and at the same time word is doing a spell check in background.
2007-10-22, 4825👍, 0💬

Is Session_End event supported in all session modes ?
.NET INTERVIEW QUESTIONS - Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”.”State Server” and “SQL SERVER” do not have Session_End event.
2009-06-02, 4822👍, 0💬

What is NameSpace?
.NET INTERVIEW QUESTIONS - What is NameSpace? Namespace has two basic functionality :- * NameSpace Logically group types, example System.Web.UI logically groups our UI related features. * In Object Oriented world many times its possible that programmers will use the same class name.By qualifying Nam...
2010-03-02, 4819👍, 0💬

Can you explain what is remotable and non-remotable objects ?
Can you explain what is remotable and non-remotable objects ? The remotable objects are the objects which can be distributed accross domains, can be used with domain. The non-remotable objects are the objects which can't be distributed accross domains. In distributed system, if an object is very big...
2009-03-19, 4816👍, 0💬

How can we load multiple tables in a DataSet
How can we load multiple tables in a DataSet ? objCommand.CommandText = "Table1" objDataAdapter.Fill(objDataSet ,"Table1") objCommand.CommandText = "Table2" objDataAdapter.Fill(objDataSet ,"Table2") Above is a sample code which shows how to load multiple “DataTable” objects in one “DataSet” object....
2007-10-24, 4814👍, 0💬

What is a CTS?
.NET INTERVIEW QUESTIONS - 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 di...
2010-02-09, 4809👍, 0💬

What is UML
What is UML? The Unified Modeling Language (UML) is a graphical language for visualizing, specifying, constructing, and documenting the artifacts of a software-intensive system.UML provides blue prints for business process, System function, programming language statements, database schemas and reusa...
2007-10-26, 4806👍, 0💬

Where is ViewState information stored
Where is ViewState information stored ? In HTML Hidden Fields.
2007-10-24, 4806👍, 0💬

What are the Proxies ?
What are the Proxies ? In the general sense, a proxy is any object that stands in for another, either servicing requests directly or passing the requests on to the object for which it is standing in. In .NET Remoting, the proxy manages the marshaling process and the other tasks required to make cros...
2009-03-25, 4803👍, 0💬

When working with shared data in threading how do you implement
When working with shared data in threading how do you implement synchronization ? There are certain situtations that you need to be careful with when using threads. If two threads (e.g. the main and any worker threads) try to access the same variable at the same time, you'll have a problem. This can...
2007-10-22, 4803👍, 0💬

<< < 17 18 19 20 21 22 23 24 25 26 27 > >>   Sort: Date