Hello I am trying to use the insertitemtemplate for the formview. The issue I am having is that I want to populate one of the fields e.g. fullname from the database and have it be readonly, but the other fields can be edited by users and then inserted into the database. See below. Can anyone help with this? Is it even possible? <table id="tblayout"> <tr> <td> Name: </td> <td> <%# Eval("fullname") %> </td> </tr><tr> <td> Address : </td> <td> <%# Bind("Address1") %> </td> </tr><tr> <td> City: </td> <td> <%# Bind("City") %> </td> </tr>><tr> <td> State: </td> <td> <%# Bind("State") %> </td> </tr>><tr> <td> Zip: </td> <td> <%# Bind("Zip") %> </td> </tr> <tr> <td colspan="2" align="right"> <asp:Button ID="InsertButton" runat="server" CommandName="Insert" Text="Insert" /> <asp:Button ID="CancelButton" runat="server" CommandName="Cancel" Text="Cancel" /> </td> </tr> </table>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)