User297359420 posted
I'm currently playing with IronPython in ASP.NET. I have a couple questions, the foremost being, is it possible to add a new control(s) to a page programmatically in the IronPython script? Examples include the ability to add new ListItems to
a DropDownList, or any type of WebControl to a Panel.
Also, using the Global.py, it appears that it only catches the Application level events, is there anyway to capture Session level events, the Session_End event is of particular importance to me.
Also, it appears there is no way to access the Application object in the Application_Begin event. Is there anyway to do this, or am I stuck attempting to only do this once in the Application_BeginRequest event.
I believe that it is possible to use C# to do handle these application/session events within the project if necessary, just checking for the sake of language uniformity.