enriquelouse
New Member
I have an unusual web application similar in some ways to the live versions of DriveWorks and KBmax. The Logic, Interface, and Tables are created in a windows application by sales teams and engineers throughout the company and stored in sql server. In the Web application, when a user clicks an item in the product menu the the Logic and Interface are pulled from the database, compiled using CodeDOM into an InMemory executable and stored in Session variable. The Front interface in web application is dynamic and invokes the executable in session for the control logic events. The Tables are also stored in a DataSet in Session. At any rate, this all actually works, but seems to have random quirks that are hard to pinpoint. I'm wondering if this is way to much to put in session and alternatives.Note: I am using javascripting where I can, however since the code is actually created by other users there is also a lot of postbacks going on. When I run this using my localhost it seems to run acceptable, but on the host server it seems clunky.I have this same application as a Windows application and it works great, just trying to make the web version.