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(" ", "");
答案 0 :(得分:2)
您似乎正在尝试将整个对象转换为字符串。相反,您应该能够使用文本字段并直接对其执行替换。
Response.Redirect(section.Text.Replace(" ", string.Empty) + ".aspx");