I am currently on a page with one querystring ItemID available, and I am creating a hyperlink that will redirect the user to a new page with the existing querystring ItemID.
I have the asp:hyperlink as below, but it is not clickable for some reason. Can someone help me out? Thanks!
<asp:HyperLink ID="hylItemReport" NavigateUrl='<%# "~/ItemReport.aspx?ItemID=" + Request.QueryString["ItemID"].ToString() %>' runat="server">Training Item</asp:HyperLink>