我有一个产品信息显示页面:spot.aspx,产品信息是通过产品列表页面的linkbutton传值来查询数据库得到的,请问如何把这个产品的型号(数据字段值:typeID)设为spot.aspx的标题。请高手指导一下,多谢!传值页面代码:  protected void lkb_Click(object sender, EventArgs e)
  {
  LinkButton lb = (LinkButton)sender;
  string typeID = lb.CommandArgument.ToString().Trim();
  int Row = ((GridViewRow)lb.Parent.Parent).RowIndex;
  string user = GV1.Rows[Row].Cells[0].Text.ToString().Trim();
  string lnk = "products/spot.aspx? eid=" + typeID;
  Response.Redirect(lnk);
  }
请教接值页面spot.aspx动态将产品型号(typeID)设置为标题名的代码?