<asp:HyperLink id=HyperLink1
Text='<%# Bind("report.reportId.ToString()") %>'
NavigateUrl='<%# Bind("~/manage.aspx") %>'
runat="server" />
I´m unable to run create this hyperlink as it gives me an error saying “A call to Bind was not well formatted. Please refer to documentation for the correct parameters to Bind.”
If it is simple data binding (no such data control is used) then use binding expression –
<%# Expression %>. (I presume that thereport.reportidis public)and call the DataBind() method from code-behind,