User-1759624489 posted
Hello. I have a table called branches with columnds, id, name,, address, phone and responsible.
Responsible field is a GUID.
I am using sqlmembership provider in another database, so that guid, is the guid of the user.
I am making a usercontrol, the usercontrol is just a DropDownList that will load the users from that database.
1. I am not using the default templates, I am using my custom templates.
2. The question is, what should I do in the gridview and detailsview, and what should I do in the usercontrol to make it work?
<Columns>
<asp:DynamicField DataField="Id" />
<asp:DynamicField DataField="Name" HeaderText="Nombre de la Sucursal"
/>
<asp:DynamicField DataField="Address" HeaderText="Dirección" />
<asp:DynamicField DataField="Phone" HeaderText="Teléfono" />
I guess
<myuc:Drop id=userId> or something like that, and the same in the detailsview.
Somthing else?