Click here to Skip to main content
15,895,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
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>
Posted

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