Click here to Skip to main content
15,884,472 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am doing a page where the the page lists out all event names by event type with a repeater. The name then will be in hyperlink which will connect to another page. When i run it , this line is where i am getting an error.
ASP.NET
<asp:HyperLink ID="HyperLink1" runat="server" Text='<%# Eval ("INV_ActivityName) %>' NavigateUrl='<%# String.Concat("EditEvents.aspx?INV_ActivityID=" ,Eval("INV_ActivityID")) %>'></asp:HyperLink>


Thanks!
Posted
Updated 17-Dec-12 10:16am
v2

1 solution

Text='<%# Eval ("INV_ActivityName) %>' 


are you missing quote here??

Text='<%# Eval ("INV_ActivityName") %>' 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900