1

净 c# 项目。我需要将 c# 代码中的颜色值传递给 asp.net 样式类。我的课是

<style>div.timeline-event {
color: #1A1A1A;
border-color: green;
background-color:#EFD5F6;
display: inline-block;
}</style>

我尝试了以下代码来传递值字符串

  MyBackgroundColor = "#EFD5F6";

在页面加载中,我已在上面声明。

 div.timeline-event {
color: #1A1A1A;
border-color: green;
background-color:'<%=MyBackgroundColor %>';
display: inline-block;
}

但我无法通过它的课程。怎么能做到这一点?

4

1 回答 1

0

background-color: '<%=MyBackgroundColor%>'background-color: '#EFD5F6'在最终的 html 代码中。将您的代码更改为background-color: <%=MyBackgroundColor%>并确保 MyBackgroundColor 是具有公共/受保护访问修饰符的页面的属性。

于 2012-10-18T11:44:12.573 回答