.NET- What is assembly ?

In this article we’ll discuss assembly in .NET environment. If you’ve any questions, suggestions or feedback then please feel free to comment. [Read more...]

How the ASP.NET authentication process works ?

In this article we’ll take a look at how the ASP.NET authentication process works. [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...]

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

ASP.NET application folders

ASP.NET 3.5 uses file based approach and we’re allowed to create as many folders and files in our application without recompiling each and every time a new file is added to the solution. Visual studio IDE has the capability to automatically
precompile asp.net applications dynamically. [Read more...]

Using MS-SQL Server Express

Earlier I have written beginners guide on MS-SQL server. In this post i’ll cover few more things about ms-sql server which are intended towards beginners. If you are beginner then I suggest you to read this post first. [Read more...]

Smallbasic

Smallbasic is simple language targeted for beginners. It tries to make it easier for newbies to start with programming.
[Read more...]

Locale

Sometimes the question is asked to students that “What is locale?” during interviews. Let’s talk about it in this post. [Read more...]

Python Graphic Libraries

Python doesn’t have native core graphics library or toolkits.But there are plenty of extentions available for python.This article discusses some of available python libraries. [Read more...]