Click here to Skip to main content
15,895,011 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to change in the asp.net to Html control in the asp.net.
XML
<table style="width: 100%;">
                                  <tr>
                                      <td class="auto-style1">
                                          <asp:Label ID="Label6" runat="server" Text="Name"></asp:Label></td>
                                      <td>
                                          <asp:TextBox ID="TextBox2" runat="server" AutoPostBack="True" OnTextChanged="textBoxValidate"></asp:TextBox>
                                          <asp:Label ID="Label7" runat="server" Text="Label" ForeColor="Red" Visible="False"></asp:Label>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td class="auto-style1">
                                          <asp:Label ID="Label2" runat="server" Text="Email Id"></asp:Label></td>
                                      <td>
                                          <asp:TextBox ID="TextBox3" runat="server" AutoPostBack="True" OnTextChanged="textBoxValidate"></asp:TextBox>
                                          <asp:Label ID="Label8" runat="server" Text="Label" ForeColor="Red" Visible="False"></asp:Label>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td class="auto-style1">
                                          <asp:Label ID="Label3" runat="server" Text="Subject"></asp:Label></td>
                                      <td>
                                          <asp:TextBox ID="TextBox4" runat="server" AutoPostBack="True" OnTextChanged="textBoxValidate"></asp:TextBox>
                                          <asp:Label ID="Label9" runat="server" Text="Label" ForeColor="Red" Visible="False"></asp:Label>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td class="auto-style1">
                                          <asp:Label ID="Label4" runat="server" Text="Your Question"></asp:Label></td>
                                      <td>
                                          <asp:TextBox ID="TextBox5" runat="server" TextMode="MultiLine" AutoPostBack="True" OnTextChanged="textBoxValidate"></asp:TextBox>
                                          <asp:Label ID="Label10" runat="server" Text="Label" ForeColor="Red" Visible="False"></asp:Label>
                                      </td>
                                  </tr>
                                  <tr>
                                      <td class="auto-style1">
                                          <asp:Label ID="Label5" runat="server" Text=""></asp:Label>
                                      </td>
                                      <td>
                                          <asp:Button ID="Button1" runat="server" Text="Submit" OnClick="SendEnquiry" /></td>
                                  </tr>
                              </table>
Posted
Comments
Rockstar_ 23-Apr-13 1:55am    
What u want to do actually ?Question not clear
Rekhash 23-Apr-13 1:58am    
@Member61
i want add in the form.
<table style="width: 100%; border-width: 1px; border-color: #666; border-style: solid">

<tr>
<td>
<form id="form4" runat="server" enctype="multipart/form-data" >
//here i want to implement coding in html form


</form>

</td>
</tr>
</table>

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900