c# - Using ASP.NET with language Python -


i'm trying ironpython code-behind-language. think has possible somehow. there test.aspx

<%@ page language="python" autoeventwireup="true" codebehind="test.aspx.py" inherits="pytest.test" %>  <!doctype html>  <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="content-type" content="text/html; charset=utf-8"/>     <title></title> </head> <body> <form id="form1" runat="server"> <div>      </div>     </form> </body> </html> 

with code-behind-file test.aspx.py

import system  class test(system.web.ui.page):     def page_load(self, sender, event):         pass 

calling test.aspx, there's

parserfehlermeldung: "python" ist keine unterstützte sprache.

(means "python not supported language") tried language="ironpython" etc... ideas?


Comments