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