Can Macros be used.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I am working on the ASP website, and currently converting all the code in ASP.NET with C#. I have to convert all the html controls on a particular page in asp.net sever side controls, e.g. <input style="WIDTH: 28px" maxLength="2" name="txtDOBDay"> needs to be converted into <asp:TextBox style="WIDTH: 28px" id="txtDOBDay" runat="server" MaxLength="2"></asp:TextBox> is there a macro or any other alternative to automate this process partially or completely, also some tips on converting a site developed in ASP/VBSCRIPT to ASP.NET/C# would be of great help to me

Than
Prasad
 
Prasad,
I do not know of an existing macro per se.

Have you considered an XSLT transform?

The limiting factor would be: your ASP.NET code would need to be well
formed. ASP.NET code does not need to be well formed...

Hope this helps
Jay

Prasad said:
Hi,
I am working on the ASP website, and currently converting all the code
in ASP.NET with C#. I have to convert all the html controls on a particular
page in asp.net sever side controls, e.g. <input style="WIDTH: 28px"
maxLength="2" name="txtDOBDay"> needs to be converted into <asp:TextBox
style="WIDTH: 28px" id="txtDOBDay" runat="server"
MaxLength="2"></asp:TextBox> is there a macro or any other alternative to
automate this process partially or completely, also some tips on converting
a site developed in ASP/VBSCRIPT to ASP.NET/C# would be of great help to me.
 
Back
Top