If you’re learning SQL server then you’ll often stumble onto term called “normalization”. So in this article we’ll discuss what normalization is and what are the different types of normalization. [Read more...]
Windows DNA Architecture
Those who have idea of classic ASP knows what is Windows DNA architecture. But those who are using .NET architecture for ASP needs to understand what was DNA architecture. Let’s take a look at what windows DNA architecture is all about. [Read more...]
SQLite Administrator
If you’re using SQLite for your small apps then using GUI interface for database creation can be handy. There is no official GUI tool for manipulating SQLite database. There are some 3rd party gui tools for sqlite. Few tools are either discontinued or are still packaged with old version of sqlite. [Read more...]
JIT Compilers in .NET Environment
JIT (Just in time) compiler is a part of the .NET runtime execution environment. Unlike traditional compilers JIT doesn’t
compile the full class file in one shot. Compilation is done on function basis or file basis. JIT compilation has advantage
over traditional compilation that heavy parsing of original source code is avoided. Compilation in .NET is done on the basis
and it’s in steps most of the time. [Read more...]
ASP.NET- Validation Controls
Whenever you want to check the data entered by users is valid or not then you are supposed to add validation controls. ASP.NET has validation framework that allows developers to create client-side and server-side controls with minimum coding. [Read more...]
How to create a master page in visual studio ?
To keep the core layout of your pages consistent you can use master page in your asp.net application. Master pages allow you to keep layout consistent within all the pages of your asp project. There are few more
advantages of using master pages in your project: [Read more...]
XML Syntax Rules
XML is growing rapidly and you’ll find yourself working with XML files while working on java or .NET platform. There are
some rules that needs to be considered while working with XML files. In this article you’ll learn some of the syntax rules
of XML. [Read more...]
Difference Between Session Bean and Entity Bean
In this post i’ve explained some of the differences between session bean and entity bean. [Read more...]
How to add javascript to aspx page ?
Javascript let’s you enhance your webpages. Javascript can control events and even add effects to parts of your web page. Adding javascript to your asp page will definitely enhance your website. [Read more...]
ASP.NET Controls: Using AdRotator
If you wish to show ads on your webpage then adrotator control will come handy for you. This control allows you to select impressions, images and even allows you to redirect to another URL if any person clicks on image. [Read more...]