Regular Expressions in Python

A regular expression in python is a special module that helps filter sequence of strings, characters and symbols using specialized syntax written in a particular pattern. Like any other programming language, regular expression module ‘re’ in python allows you to process unlimited amount of strings that passes regular expression requirements. [Read more...]

IronPython Windows Forms – Event Handling

Building windows forms using ironpython is very easy. If you want to make you windows forms perform certain task then you need to add event handlers into it. Working with event handlers is a bit tricky but not difficult if you know what you’re doing. In this article we’ll see how to write ironpython code to create a windows form with clickable button and label text which changes text. [Read more...]

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

What is the difference between data grid, data list and repeater ?

This article discusses the difference between data grid, data list and repeater. [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...]

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