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...

Tuesday, 21 October 2014

Monday, 20 October 2014

Thursday, 16 October 2014

How To Add Dynamic Controls Into Gridview in Asp.net

How to add dynamic controls to the Grid view in the Code Behind page. when the page is refresh or the page is Post Back the dynamically created controls will disappear from Grid View, this sample will show how to resolve this issue. Step 1. Create a C# "ASP.NET Web Application" Name it Add_Dynamic_Control_to_Grid-view". Step...

Thursday, 25 September 2014

Monday, 22 September 2014

Saturday, 20 September 2014

What Is Delegate

Here I will explain what is Delegate and types of Delegate. Single Cast Multi Cast Asynchronous Delegate is a type known as pointer type looks like method and perform like type derived from super type delegate.Delegate is Reliable declaring N number methods with same nature with different different operation can perform nay effective...

Friday, 19 September 2014

Thursday, 18 September 2014

Saturday, 13 September 2014

Tuesday, 9 September 2014

Thursday, 4 September 2014

How To Bounce Left a div by Using jQuery plugin And use in Asp.Net.

Here i will explain how to move or bounce a particular division by using jquery. Here i will use .velocity() function instead of $.animate() animation engine. Velocity is a  animation engine that re-implements jQuery's $.animate() for better performance (making Velocity also faster than CSS animation libraries) while including...

Saturday, 30 August 2014

Friday, 29 August 2014

Copyright © 2025 DotNet-Ashok