如何在 RadioButtonList ListItem 文本中使用会话变量
我正在尝试创建一个 Rediobuttonlist:
在选项文本中,我想插入已登录组织的名称。我将该名称存储在会话变量中。
因此,如果“A”登录,我希望他们看到:
不再是 A 的成员,但选项 1
不再是 A 的成员,但选项 2
不再是 A 的成员,但选项 3
如果“B”登录,他们应该看到:
否不再是 B 的成员,但 option1
不再是 B 的成员,但 option2
不再是 B 的成员,但 option3
等等......我该怎么办?
通常我使用标签,而不是在我后面编写的代码中(c#):
label.text = "不再是" + Session["name"]+"but option";
但我无法将标签插入单选按钮列表文本。
有什么想法吗?
谢谢。
I am trying to create a Rediobuttonlist:
In the options' text I want to insert a name of organisation which is logged in. I store the name in a Session variable.
So if "A" is loggin in I want them to see:
no longer a member of A but option1
no longer a member of A but option2
no longer a member of A but option3
If "B" is logged in they should see:
no longer a member of B but option1
no longer a member of B but option2
no longer a member of B but option3
and so on ... How can I do that?
Normally I use a label and than in the code I write behind (c#):
label.text = "no longer a member of" + Session["name"]+"but option";
but I can not isert a label to the Radiobutton list text.
Any ideas?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许它可以帮助你:
maybe it helps you: