ASP.NET

Posts filed under ASP.NET

ASP.NET – Passing Multiple Values in Querystring

Filed in ASP.NET, Web AppTags: , , ,

Using the Querystring is the another method to pass information between pages in your ASP.NET application. As we know that Querystring is the portion of the URL after a Question Mark(?). The information is always retrieved as a string that can be converted with any type.Here we get the code to pass multiple values at [...]

ASP.NET Cookies – Creating, Retrieving and Deleting Cookies

Filed in ASP.NET, Web AppTags: , , , ,

Cookies are used to store the information when web server and web browser are not connected. This information can be about the online visitors, total visits to that particular application etc. A cookie is used to identify a user. The cookie is a small text file that is sent by web server and saved by [...]

Boxing and Unboxing in C#

Filed in C#Tags: , , , ,

The two terms Boxing and Unboxing in C# are used when we need to convert one data type to other type. First we will discuss the Boxing. Boxing is the process of converting a Value type to the other Object type. When we use the Boxing of a value type to an objtct type the [...]

How to Add Fade In Effect to ASP.Net Pages

Filed in ASP.NETTags: , , , ,

ASP.Net is not just about creating Web based projects but we can also use features like CSS, Javascript, jquery etc. to enhance the feel and look of the webpage. Such kinds of enhancements create a deep interest and also grab an immediate attention of the web visitor. One such effect is Fade In on pageload. [...]

Pros-Cons of URL Mapping in ASP.Net

Filed in ASP.NETTags: , , , ,

The concept of URL mapping was introduced for the very first time in ASP.Net version 2.0 and ever since, it has been in existence. While most of the Web-developers who develop their projects on ASP.net prefer going for URL Mapping whereas there are developers who don’t like to go with the concept of URL mapping. [...]

How to Generate Random Password in ASP.NET

Filed in ASP.NETTags: , , , , ,

While ASP.NET is known for providing users/developers with inbuilt functions and methods for creating Login forms etc., yet there are sometimes when we need to generate a random password string for every new user created. Especially in applications like Online Examinations System where the admin generates a random default password for every new user created. [...]

Generate Randon Machine Key in your ASP.NET Application

Filed in ASP.NET, Web AppTags: , , , , ,

A machineKey generator allowing static keys in ASP.NET 1.1 or 2.0 applications. There are two keys that ASP.NET uses to encrypt, decrypt, and validate data in ViewState, Forms Authetication tickets, and out-of-process Session data. The decryptionKey is used for encryption and decryption of authentication tickets and encrypted ViewState information. The validationKey is used to validate ViewState and [...]

Wizard Control In ASP.NET

Filed in ASP.NET, Web AppTags: , , ,

Wizard Control of ASP.NET help us to create a step by step wizard in our website. The Wizard control used when we want a big number of entries from user. Mainly we use this control in signup process of our site. In this article we will learn to use the Wizard control as well as [...]

Build a Setup Project in ASP.NET

Filed in ASP.NET, Desktop AppTags: , , , , , ,

There are three types of applications in asp.net and that are Console Applications, Web Applications and Window Applications. Today we are talking about Window Applications. While developing Window Applications we need to remember the most import thing about the Window Applications work area. As we know that Window Applications or Window Projects run on the [...]

TreeView Navigation Control in ASP.NET

Filed in ASP.NET, Web AppTags: , , ,

Previously we have discussed about Navigation controls in ASP.NET. Also we saw that how to use the SiteMapPath control for navigation between pages. Today we are going to use another Navigation control. The control is TreeView control. TreeView control is also used to navigate from one page to other page in an ASP.NET web application. [...]