I have a Repeater control (myrepeater) and a datagrid both bound to the same datasource:
dgMaster.DataSource = GetAuthors()
dgMaster.DataBind()
myRepeater.DataSource = GetAuthors()
myRepeater.DataBind()
Here is how it is setup in the repeater:
<%# Container.DataItem("firstdate") %>
1
I tried to hypelink the Hyperlink1 in Repeater to the datagird:
<%# DataBinder.Eval(Container.DataItem, "firstdate") %>
I am totally confused about how to do that. Please help me