0
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(" ", "");
4

1 回答 1

2

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

Response.Redirect(section.Text.Replace(" ", string.Empty) + ".aspx");
于 2013-09-05T17:41:39.393 回答