Hello,
This is my bare DataList definition :-
<asp:DataList runat="server" ID="dtltrial"
ondeletecommand="dtltrial_DeleteCommand" DataKeyField="PhotoId" >
</asp:DataList>
where PhotoId is my primary key of table and so i have given it as datakeyField. However i also want AlbumId
along with DataKeyField. How do i specify it in DataKeyField and later on retrieve it in ondeletecommand
event of DataList?
Thanks in advance :)