views:

95

answers:

1

I would like to use some code written in python (it uses built in modules) in a regular ASP.NET/C# web application. I am a newbie in python and have heard of IronPython and how ASP.NET now allows us to create IronPython apps.

Any thoughts on which way I should proceed? The python code is the on here

+2  A: 

Some links:

If the above approaches do not suit the problem, it is quite simple to embed the IronPython engine from C#. See http://www.voidspace.org.uk/ironpython/embedding.shtml .

codeape
IronPython is definitely the way to go.
inspectorG4dget
Sorry for being dense. Are you saying I should convert the python code to Iron Python project and embed it into my ASP.NET app?
DotnetDude