I have a DataList control on my page which contains a LinkButton/HyperLink control in each row.
Now on click of this LinkButton control I want to show a panel with the help of ModalPopupExtender in which I want to show more data about that particular row by passing the ID of that row.
I have three problems in that:
- How to fetch the
IDof that particular row? - How to pass the data to the ModalPopupExtender?
- How to fetch more data from database based on that
IDdynamically?
Please help.