I need to Bind "JobRefNo" to the query string.Below binding gives an error.what is the correct way?
Link Button is inside a DataList control.Error says "Call to Bind must be assigned to a property of a control inside a template"
Code:
<asp:LinkButton ID="MoreLinkButton" PostBackUrl="/real/Coordinator/Home.aspx?JobRefNo="'<%# Bind("JobRefNo") %>' runat="server">Go To Job...</asp:LinkButton>
Comment