I have a label within an Edit Template for a gridview which goes like this:\[code\]<asp:Label ID="lblProjectID" runat="server" Text='<%# Bind("Project_ID") %>'></asp:Label>\[/code\]I would like to turn that label text into a http link like so:\[code\]<asp:Label ID="lblProjectID" runat="server" Text='<a href=http://intranet/?<%# Bind("Project_ID") %>> <%# Bind("Project_ID") %></a>'></asp:Label>\[/code\]So the link would look something like \[code\]http://intranet/?Project_ID\[/code\]But that syntax is incorrect. What is the correct way to write that?