In previous post we discussed how to create a simple window using ironpython to display hello world. Now let’s take this a bit ahead and see how to work with labels. Like any other language you can add or edit windows form labels in ironpython. At the end of this article you’ll learn how to modify the label properties for windows form. [Read more...]
Ironpython Tutorial – Hello World
Ironpython is python under .NET environment and it is made to access all the .NET classes and libraries keeping all the features of original distribution intact. If you’re programming python under windows environment then it is better to get ironpython instead of python’s official distribution. Why ? Because once you pass the basic level of python programming then surely your interests will be to use python either for desktop app or web app. In such case you can benefit a lot from ironpython distribution than official distribution under windows environment. In this article you’ll learn how to program your first ironpython hello world app. [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...]
SQL Server – Normalization
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...]