Get IP Address Using IronPython

You can create simple window based apps using ironpython. By using ironpython you can quickly write python code to access .NET framework and respective methods. In this article you’ll learn how to get IP address of your local machine. [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...]

Ironpython – Using TextBox Widget

Writing windows forms application is very easy if you’re using ironpython. You can accept input from user with ironpython just like the way you do with C# windows forms. In this article you’ll learn how to work with textbox widget to accept user input. If you want to use single lines of text then this widget is very useful in your application. [Read more...]

C# Books for Beginners

If you’re beginner in C# then i’m sure you’re looking for the best book that fits your style. Though not all books are same and are preferred by everyone. Some books are just plain old theory dropped with some word salad in big size book while some books just put content out as definitions and bibliography of concepts. Depending what type of content you can digest and what you need for interviews and exams there are plenty of good books out there. [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...]

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