我该怎么做才能使href文本可以通过c#更改?

Posted

技术标签:

【中文标题】我该怎么做才能使href文本可以通过c#更改?【英文标题】:how to do i make it do the href text will be changable by c#? 【发布时间】:2022-01-14 16:46:42 【问题描述】:

我有字符串 list_name,我希望 href 链接文本是 list_name 中的字符串,而不是单词 list_name。我该怎么做?

 public void ShowButtonLists(DataTable table, int length)

        
            for (int i = 0; i < length; i++)
            
                string list_name = table.Rows[i].ToString();
                Response.Write("<td> <a href='ShowList.aspx?listname=" + list_name + "'>list_name</a></td> ");
                Response.Write("<br/>");
            
        

【问题讨论】:

只记录开始/结束引号... listname='" + list_name + "'>" + list_name + "... 也可以考虑利用字符串插值。引号不再是一个问题,并且在编码时读起来更好 【参考方案1】:
 public void ShowButtonLists(DataTable table, int length)

        
            for (int i = 0; i < length; i++)
            
                string list_name = table.Rows[i].ToString();
                Response.Write("<td> <a href='ShowList.aspx?listname=" + list_name + "'>"+list_name +"</a></td> ");
                Response.Write("<br/>");
            
        

【讨论】:

以上是关于我该怎么做才能使href文本可以通过c#更改?的主要内容,如果未能解决你的问题,请参考以下文章

在某些情况下,我该怎么做才能使这个 SQL 返回结果?

我该怎么做才能有没有符号的数字?

如何通过 c# 以编程方式更改 COM 安全设置?

c#我想通过一个按钮制作需要管理员的代码,并且没有权限打开应用程序,我该怎么做?

我的图像在图像滑块上看起来很糟糕 - 我该怎样做才能使我的图像看起来不舒展?

我该怎么做才能让我的机器人再次工作? discord.py [关闭]