修剪值之间的空格

本文关键字:空格 之间 修剪 | 更新日期: 2023-09-27 18:30:15

LinkButton section = (LinkButton)gridcheck.Rows[i].FindControl("lbSection");
if (section == sender)
  Response.Redirect(section.Text + ".aspx");

假设我有一个"AirPlane.aspx"页面,我调用的数据库表名为"Air Plane"。 我试图使用它来修剪"r"和"P"之间的空格,但它不起作用

Convert.ToString(section).Replace(" ", "");

修剪值之间的空格

您似乎正在尝试将整个对象转换为字符串。相反,您应该能够使用文本字段并直接对其执行替换。

Response.Redirect(section.Text.Replace(" ", string.Empty) + ".aspx");