Monday, 15 December 2014

Thursday, 20 November 2014

Boxing & UnBoxing In C#

C# is a strongly-typed language. Every variable and constant has a type, as does every expression that evaluates to a value. In this article I will share about understanding Boxing and UnBoxing in C#. C# Type System contains three Types , they are Value Types , Reference Types and Pointer Types. C# allows us to convert a Value Type to a Reference...

Wednesday, 19 November 2014

View State In Asp.Net

View state is the method that the ASP.NET page framework uses to preserve page and control values between round trips. When the HTML markup for the page is rendered, the current state of the page and values that must be retained during post back are serialized into base64-encoded strings. When an ASP.NET page is...

Tuesday, 18 November 2014

Caching In Asp.Net

Caching is the ability to store page output and data in memory for the first time it is requested and later we can quickly retrieve them for multiple, repetitious client requests. It is like keeping a copy of something for later use, so we can reduce the load factor on Web servers and database servers by implementing caching on a Web application. Writing...

How To Use Cookies ASP.NET.

Cookies provide the ability to store small amounts of data on a clients machine. It is often used to store user preferences, session variables, or identity. When the user visits your Web site another time, the application can retrieve the information it stored earlier. The browser is responsible for managing cookies on a user system. Cookies can...

Saturday, 1 November 2014

Tuesday, 28 October 2014

What Is CMS ?

What Is  CMS ? CMS Stand for (Content management system) is a system used to manage the content of a Web site. that allows publishing, editing and modifying content, organizing, deleting as well as maintenance from a central interface. CMSs have been available since the late 1990s. CMSs are often used to run websites containing blog, news, and shopping. Many...

Copyright © 2025 DotNet-Ashok