Describe java’s security model.
Java’s security model is one of the most interesting and unique aspects of the language. For the most part it’s broken into two pieces: the user adjustable... Read more »
Java’s security model is one of the most interesting and unique aspects of the language. For the most part it’s broken into two pieces: the user adjustable... Read more »
One of ASP.NET’s most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. You can use them to extend... Read more »
which is best in a loosely coupled solution? ASP.NET supports two modes of page development: Page logic code that is written inside blocks within an .aspx file... Read more »
Yes, via machine.config and application level .config file (or web.config in ASP.NET). Application-level XML settings take precedence over machine.config. Read more »
Use caspol. If you are the machine administrator, you can operate at the ‘machine’ level - which means not only that the changes you make become the... Read more »
Debug Mode for ASP.NET applications - To set ASP.NET appplication in debugging mode, edit the application’s web.config and assign the “debug” attribute... Read more »
The runtime supports Windows XP, Windows 2000, NT4 SP6a and Windows ME/98. Windows 95 is not supported. Some parts of the framework do not work on all platforms... Read more »
One of the key features of the ADO.NET DataSet is that it can be a self-contained and disconnected data store. It can contain the schema and data from several rowsets... Read more »
WSDL is the Web Service Description Language, and it is implemented as a specific XML vocabulary. While it’s very much more complex than what can be described... Read more »
AspCompat is an aid in migrating ASP pages to ASPX pages. It defaults to false but should be set to true in any ASPX file that creates apartment-threaded COM objects–that... Read more »
The Web Garden Model: The Web garden model is configurable through the section of the machine.config file. Notice that the section is the only configuration section... Read more »
Yes, we can do this, but to handle errors, we must know the error codes; only then we can take the user to a proper error message page, else it may confuse the user. CustomErrors... Read more »
ViewState is the mechanism ASP.NET uses to keep track of server control state values that don’t otherwise post back as part of the HTTP form. ViewState Maintains... Read more »
On Windows 2003 (IIS 6.0) running in native mode, the component is running within the w3wp.exe process associated with the application pool which has been configured... Read more »
“ASP (Active Server Pages) and ASP.NET are both server side technologies for building web sites and web applications, ASP.NET is Managed compiled code - asp... Read more »