Click here to Skip to main content
15,881,863 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ASP.NET
<a href="GetImage.aspx?id=<%#Eval(" ad_id=") %>" target="_blank">Apply Now</a>
Posted

1 solution

You use double quotes for your attribute and for your Eval method. This means that you actually close the attribute, then put ad_id (which does not get evaluated), and then you open the attribute again. Use single quotes for your attribute and double quotes for the Eval method:
ASP.NET
<a href='GetImage.aspx?id=<%#Eval("ad_id") %>' target="_blank">Apply Now</a>
 
Share this answer
 
Comments
kashifjaat 26-Mar-15 1:30am    
Thanks!

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