C#中如何在包含变量的字符串中插入引号

发布于 2024-10-01 21:54:35 字数 336 浏览 5 评论 0原文

我想生成一个类似于下面 C# 代码中提到的字符串:

<a href="~/Online Exam/Question.aspx?id=1"></a>

我现在使用的代码如下所示:

string url= string.Format("\"~/Online Exam/Question.aspx?id={0}\"", id);
td.Text = "<a href=" + url + ">" + id + "</a>";

但我无法使用上述代码获得所需的输出。请帮我解决这个问题。

I want to generate a string like the one mentioned below in C# code behind:

<a href="~/Online Exam/Question.aspx?id=1"></a>

The code which I am using right now is shown below:

string url= string.Format("\"~/Online Exam/Question.aspx?id={0}\"", id);
td.Text = "<a href=" + url + ">" + id + "</a>";

but I am not able to get the desired output with the above code. please help me out with this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

自由如风 2024-10-08 21:54:36

请使用

string url= String.Format("~/Online Exam/Question.aspx?id={0}", id);
td.Text = String.Format("<a href=\"{0}\">{1}</a>", url, id);

如果您关心 String.Format() 性能(因为文化特异性),

string url= String.Concat("~/Online Exam/Question.aspx?id=", id);
td.Text = String.Format("<a href=\"{0}\">{1}</a>", url, id);

或 :对!由于 不会将 ~ 解析为应用程序根目录,因此只有 会解析。所以

td.Controls.Add(new HyperLink { Text = id, NavigateUrl= url });

Use

string url= String.Format("~/Online Exam/Question.aspx?id={0}", id);
td.Text = String.Format("<a href=\"{0}\">{1}</a>", url, id);

or if you care about String.Format() performance (because of culture-specificity):

string url= String.Concat("~/Online Exam/Question.aspx?id=", id);
td.Text = String.Format("<a href=\"{0}\">{1}</a>", url, id);

Right! Because <a> doesn't parse ~ as application root, only <asp:HyperLink> does. So

td.Controls.Add(new HyperLink { Text = id, NavigateUrl= url });
鱼忆七猫命九 2024-10-08 21:54:36

您可以尝试在最后一行设置引号,例如:

string url= string.Format("~/Online Exam/Question.aspx?id={0}", id);
td.Text = "<a href=\"" + url + "\">" + id + "</a>";

也使代码更符合逻辑,因为您的变量 url 现在实际上只包含 url。

(未测试)

You can try to set the quotation mark in the last line, like:

string url= string.Format("~/Online Exam/Question.aspx?id={0}", id);
td.Text = "<a href=\"" + url + "\">" + id + "</a>";

Makes the code more logical as well, since your variable url is now really containing only the url.

(not tested)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文