I'm new in the tecnology C# and ASP.Net and I need help choosing the best approach to migrate desktop application Delphi
to web application C# and ASP.NET. My question is a whether there are tecnology / framework to contribute this migration
and how to balance the use these tools and manual migration. Tnks for help. Rodrigo.
vcl jsPosted Oct 22, 2013, 12:08 AM
Take a look at VCL.JS it's a brand new environment that use typescript for frontend and Delphi component concept. All under visual studio environment plginn.
And with c# backend.
An example for a component usage :
var qur = new V.TQuery(this);
qur.SQL = "Select * from customers";
qur.open();
var in = V.TDBInput(this,'itm');
in.DataSet = qur;
in.FieldName = "FirstName"
http://vcljs.com