Hi,
I have lot of html pages which i need to convert to aspx
In this process, I want to convert all html form elements to web controls
My all pages have followed a company standard which will ease the process of converting them.
eg:
<INPUT id="opp10" tabIndex="8" maxLength="255" name="opp10">
this want to replace with
<asp:textbox id="opp10" tabIndex="8" maxLength="255"></asp:textbox>
ex:
<SELECT id="opp5" tabIndex="3" name="opp5">
<OPTION value="" selected>--None--</OPTION>
<OPTION value="New Business">New Business</OPTION>
<OPTION value="Follow-On Business">Follow-On Business</OPTION>
</SELECT>
replace string
<asp:dropdownlist id="opp5" tabindex="3">
<asp:listitem value="" selected=true">--none--</asp:listitem>
...
Please help me in the regard
thank you
I have lot of html pages which i need to convert to aspx
In this process, I want to convert all html form elements to web controls
My all pages have followed a company standard which will ease the process of converting them.
eg:
<INPUT id="opp10" tabIndex="8" maxLength="255" name="opp10">
this want to replace with
<asp:textbox id="opp10" tabIndex="8" maxLength="255"></asp:textbox>
ex:
<SELECT id="opp5" tabIndex="3" name="opp5">
<OPTION value="" selected>--None--</OPTION>
<OPTION value="New Business">New Business</OPTION>
<OPTION value="Follow-On Business">Follow-On Business</OPTION>
</SELECT>
replace string
<asp:dropdownlist id="opp5" tabindex="3">
<asp:listitem value="" selected=true">--none--</asp:listitem>
...
Please help me in the regard
thank you