Showing posts with label .net framework. Show all posts
Showing posts with label .net framework. Show all posts

Monday, April 1, 2013

Features of .net framework 4.0


Features of .net framework 4.0 ?

a. We can enable and disable viewstate.

b. Output cache extensibility which means we can use hard drives or any other memory resources to save
the cache data.

c. we can compress the session state values.

d. Response.Redirectpermanent new keyword to permanently redirect to a page.

e. New Keywords introduced in code behind for meta keywords and meta description.
    example : page.metadescription = "Welcome to my website. we provide services for web designing"
                        page.metakeywords = "web designing, professional web designers "

f. Routing in Asp.net 4.0. It helps us to provide a more meaningful URLs.
   http://www.xyz.com/shop.aspx?countryid=91&branchid=6
   using routing we can change it to
   http://www.xyz.com/shop/country/branch

e. Some of the sections from the webconfig file has been moved to the machine config file, which makes our web config file more cleaner and easy to manage.

f. new keyword enviroment.is64bitoperatingsystem introduced to check whether the operating system is a 64 bit or not.

g. Side by side execution : This helps us to run applications simultaneously which are based on different .net frameworks.
 example : one application is on .net 3.5 and other is on .net 4.0 both can run simultaneously.
Protected by Copyscape Duplicate Content Detection Tool

Thursday, March 28, 2013

.net framework

.net framework what it is and how it works ?

1. .net framework is application development framework designed by Microsoft.
2. It is used by developers to develop windows or web based applications.
3. CLR i.e Common Language Run time is one of the important component of the .net Framework which is  responsible for code execution, Memory allocation, Security.


4. CLR uses JIT(Just in Time Compiler) for Converting the MSIL code to machine code. Machine code is the final execution.
5. This .net framework ensures that code written in different languages can interact with each other.
6. The various components of the .Net framework are :

  a) CLR 
  b) CTS
  c) Security 
  d) Deployment 
  e) Class library
  f) Cross language Interportibility