The User Defined Data Type – Enumeration Type and Structure Type

Filed in ASP.NETTags: , , , , , , , ,

The User Defined data type are the type in which we can defined such data type according to our requirement. Some example of user defined data type are Enumeration and Structure Type.  Today we will discuss the user defined Data Types. In this article we will learn how to declare and define enumeration data type and structure data type. Also we will see that how we can access/ retrieve the values that are stored in these User defined Types. I hope that this will help you to learn something about Enumeration and Structure Type.

Read the rest of this entry »

The using Directive and the System Namespace

Filed in ASP.NETTags: , , , ,

As we know a namespaces is a set of related classes. A namespace may also contain other namespaces. Today we will discuss about the System namespace. The System namespace contains the classes that most applications use for interacting with the operating system. You can refer to objects in namespaces by prefixing them explicitly with the identifier of the namespace. For example the System namespace contains the Console class, which provides several methods, including WriteLine.

Read the rest of this entry »

10 Landing Page Testing Mistakes You Should Avoid

Filed in Web AppTags: , , , ,

There are different types of testing methods and strategies that you can use for the sake of checking if your landing page is up to the mark. However, when you are planning these strategies, there are a few common mistakes that you must avoid.

Read the rest of this entry »

Role of Common Lauguage Runtime in .NET Framework

Filed in ASP.NETTags: , , , , ,

The Common Language Runtime(CLR) simplifies application development, provides a robust and secure execution environment. The environment is also referred to as a managed environment. The Common Language Runtime provides some services such as garbage collection, security etc. The Common Language Runtime in .NET Framework provides various features that help .Net Framework to become more reliable and secure. As we will proceed in this article we will discuss all the features that Common Language Runtime provides.

Read the rest of this entry »

How and Why to Use ASP.NET to Build Your Website

Filed in ASP.NETTags: , ,

ASP.NET is a web application framework from the Microsoft Corporation which allows even inexperienced users to build websites, applications, and services. Programs are built with common language runtime, and are capable of using SOAP extensions. There are several benefits to using ASP.NET to build your next website.
Read the rest of this entry »

How to convert DataSet to DataTable

Filed in ASP.NETTags: , , ,

Converting Dataset to DataTable in ASP.net can be achieved in an easy way using only a few lines of code. This however, requires a deep knowledge of DataSet and DataTable as DataSet consists of one or more DataTables within which again have table schemas in them. This schema stores information such as column names, and their datatypes.

Read the rest of this entry »

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. I was going through a random page on Internet and found it very cool so thought about implementing the same in ASP.Net

Read the rest of this entry »

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. In this article, we will discuss about the Pros and Cons of URL mapping in ASP.net but before moving further, I would give a small definition to newbies of ASP.net.

Read the rest of this entry »

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. We can make use of inbuilt random class for it and get the things done easily. So here we are discussing the best way to do so along with a step by step instruction with code:

Read the rest of this entry »

Microsoft .Net Framework Architecture

Filed in ASP.NETTags: , , , ,

Microsoft .Net Framework is very useful as it provides support for developing both Windows applications and Web based applications. Microsoft has provided .Net Framework with an exceptional feature which automatically converts the datatypes as per the requirement of framework (if the language is supported). You can also design and run your own language inside the .Net framework if it is designed as per the assembly and directives supported by it. At present, the .Net framework 4.5 supports more than 25 languages with the most common being C++ , VB , C# ,F#, J# and many more. If you want to know as to how the framework can support more than one language, then you must have some information about the architecture of .Net framework.

Read the rest of this entry »