我在编写C#时遇到问题,无法将会话变量的值动态添加到span标记的内部html中。
这是有问题的HTML的特定片段:
<li><strong>You have <span style="background-color:red; color:white; border-radius: 50%; padding: 2px;" id="spanCounter"></span> connections.</strong></li>
我正在考虑采取以下措施:
spanCounter.InnerHtml = Session["Count"].ToString();
...但Visual Studio未检测到span的id。任何帮助将不胜感激。
答案 0 :(得分:3)
将runat="server"
添加到您的span标记中。