如何在 RadioButtonList ListItem 文本中使用会话变量

发布于 2024-09-02 03:23:54 字数 458 浏览 6 评论 0原文

我正在尝试创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め可乐爱微笑 2024-09-09 03:23:54

也许它可以帮助你:

    Dictionary<string,string> newlist = new Dictionary<string,string>();
    newlist.Add("opt1","no org" +Session["schubles"]+ "but opt bla");
    newlist.Add("opt2","no org" +Session["schubles"]+ "but opt blo");
    newlist.Add("opt3","no org" +Session["schubles"]+ "but opt blum");
    rlist.DataValueField = "key";
    rlist.DataTextField = "value";
    rlist.DataSource = newlist;
    rlist.DataBind();

maybe it helps you:

    Dictionary<string,string> newlist = new Dictionary<string,string>();
    newlist.Add("opt1","no org" +Session["schubles"]+ "but opt bla");
    newlist.Add("opt2","no org" +Session["schubles"]+ "but opt blo");
    newlist.Add("opt3","no org" +Session["schubles"]+ "but opt blum");
    rlist.DataValueField = "key";
    rlist.DataTextField = "value";
    rlist.DataSource = newlist;
    rlist.DataBind();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文