简体   繁体   中英

bind value without single or double quote in repeater

i have requirement to bind value in repeater itemtemplate without any single or double quote...currently for reference i add html code

<div data-thumb=images/banner2.jpg data-src="images/banner2.jpg">

above code in my repeater looks like..

<div data-thumb="<%#"~/banner/" +Eval("banner_image") %>" data-src='<%#"~/banner/" +Eval("banner_image") %>' data-title="dfdsfds">

so i want to bind data-thumb value without single or double quote because u can see the html data-thumb has value without any quote....

u can use this alternative m sollution it will work

<div data-thumb='<%#"~/banner/" +Eval("banner_image") %>' data-src="@<%#"~/banner/" +Eval("banner_image") %>" data-title="dfdsfds">

OR

<div data-thumb="@<%#"~/banner/" +Eval("banner_image") %>" data-src="@<%#"~/banner/" +Eval("banner_image") %>" data-title="dfdsfds">

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