It depends on what you want to do, see
Using Parameters with Data source[
^]
More than likely you want to update from controls for the Title / name:
<Updateparameters>
<asp:ControlParameter Name="Title" Type="String" controlid="DropDownListTitle" propertyname="SelectedValue"/>
<asp:ControlParameter Name="Address" Type="String" controlid="nameTextBox" propertyname="Text"/>
</updateparameters>
As for the ID, that depends very much how you have designed the form, but more it is probably you'll get it from
ControlParameter
as above or a
FormParameter
or a
QueryStringParameter
.Examples are available in the link above.