简体   繁体   中英

how to bind the string variable to a href of anchor tag in c#

I want to add the value of string variable filename to href ahead of TC like:

href="TC/'" @filename"'" target="_blank" style="color:White;"> Download TC

// code behind

filename = dr["filename"].ToString();
<a href='@("TC/" + filename)' target="_blank" style="color:White;"> Download TC</a>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM