What is the difference between login controls and Forms authentication?
Login controls are an easy way to implement Forms authentication without having to write any code. For example, the Login control performs the same functions you... Read more »
Login controls are an easy way to implement Forms authentication without having to write any code. For example, the Login control performs the same functions you... Read more »
ASP.NET introduces new functionality that allows you to write debug statements, directly in your code, without having to remove them from your application when it... Read more »
Instead of enabling tracing for individual pages, you can enable it for your entire application. In that case, every page in your application displays trace information.... Read more »
At its core, the ASP.NET execution engine compiles the page into a class, which derives from the code behind class (which in turn derives directly or indirectly... Read more »
You can deploy an ASP.NET Web application using any one of the following three deployment options.1.XCOPY Deployment 2.Using the Copy Project option in VS .NET 3.Deployment... Read more »
ASP.NET Configuration The ASP.NET configuration system features an extensible infrastructure that enables you to define configuration settings at the time your ASP.NET... Read more »
There are number of important settings that can be stored in the configuration file. Here are some of the most frequently used configurations, stored conveniently... Read more »
web.config: Web.config file, as it sounds like is a configuration file for the Asp .net web application. An Asp .net application has one web.config file which keeps... Read more »
Supporting .Net, bcoz DLL made in C#.Net semicompiled version. Its not a com object. It is used only in .Net Framework.As it is to be compiled at runtime to byte... Read more »
The answer is False because it is given that A.equals(B) returns true i.e. objects are equal and now its hashCode is asked which is always independent of the fact... Read more »
Actually JIT activation is required for COM+ components which can be done by setting JustInTimeActivation attribute to true (choice A). For .net applications / components... Read more »
An application called AXImp.exe shipped with .Net SDK is used. This application does something similar as Tlbimp.exe does for non graphical COM components. It creates... Read more »
The fixed statement sets a pointer to a managed variable and “pins” that variable during the execution of statement. Without fixed, pointers to managed... Read more »
Destructors are called in reverse order of constructors. First destructor of most derived class is called followed by its parent’s destructor and so on till... Read more »
int[] arr = new int[3]; arr[0] = 4; arr[1] = 1; arr[2] = 5; Array.Sort(arr); Array.Reverse(arr); Read more »