<asp:Repeater ID="RepterDetails" runat="server" onitemcommand="RepterDetails_ItemCommand" OnItemDataBound="Repeater1_ItemDataBound"> <HeaderTemplate> </HeaderTemplate> <ItemTemplate> <table cellspacing="0" cellpadding="0" bgcolor="#e6e5e5"; style="width: 650px"> <tr> <td width="150" align="left" valign="middle"><asp:Label ID="lbl_marital" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "maritalstatus")%>' Font-Bold="true"></asp:Label> <asp:DropDownList ID="marital" runat="server" class="feedback_textfield" Visible ="False" AutoPostBack="true" > <asp:ListItem>Select</asp:ListItem> <asp:ListItem>unmarried</asp:ListItem> <asp:ListItem>married</asp:ListItem></asp:DropDownList></td>
<tr> <td width="93" align="left" valign="middle"><asp:Label ID="lblwife" runat="server" Text="Wife Name" ></asp:Label></td> <td width="12" align="center" valign="middle"><asp:Label ID="Label2" runat="server" Text=":" ></asp:Label></td> <td width="150" align="left" valign="middle"><asp:Label ID="lbl_wife" runat="server" Text='<%# Bind("wifename")%>' Font-Bold="true"></asp:Label> <asp:TextBox ID="txtwife" runat="server" class="feedback_textfield" Text='<%# Bind("wifename")%>' Visible="false"></asp:TextBox></td> </tr>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)