Just to mention that Tornado does work with C#. This example will be included in the next release of TED4.->

<script language="C#" runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
//... case sensitive. see manual [F11] for details.
Tornado.Z x = new Tornado.Z();
x.dbSkin = "2";
x.dbTextHolder = "Title=Using C#";
x.dbDSN = "NWIND";
x.dbSQL = "EMPLOYEES";
x.ASPdbNET(null);
}
</script>


FK