IronPython - Dynamically creating objects and binding them to a form
Coding is fun and all, but what if we could generate a form instantly without having to create sql statements or create classes? Sure, LINQ does that, but it's annoying to have to recreate the LINQ-TO-SQL file every time the database schema changes. Since IronPython is a dynamic
language, it has the ability to add new members to a type at runtime.
More...
Beginning IronPython - Creating an update form (Part 4)
In this tutorial, we will create a simple update form. It will work off the class that was built in the last tutorial and
use object oriented principals.
More...
Beginning IronPython - Creating a class (Part 3)
In this tutorial we will be creating a sql table based class for a simple form.
It will demonstrate how to create a class and reference it from a form.
More...
Beginning IronPython - Connecting to a database and using the gridview (Part 2)
This tutorial goes over connecting to a database, binding the data to a grid,
then color coding the stocked quantity column. This could be done through sqldatasource, however for this demonstration it will be bound manually to show how it can be done.
The AdventureWorks database will be used.
More...
Beginning IronPython - Creating a basic ASP.NET Form (Part 1)
Ever wanted to know how to create an IronPython site but didn't know where to start? Here is a simple tutorial to get you up and running quickly.
More...