这个东西有一个按钮可以做到这一点,但我决定使用超链接,在代码中你会看到我使用的按钮将我重定向到团队页面,其中 id 将提供将填充的信息其他领域。基本上我在玩家页面中,我希望它通过 id 重定向到玩家团队页面。
protected void Button4_Click(object sender, EventArgs e)
{
int playerId = Convert.ToInt32(Request.QueryString["Id"]);
DBLPlayers players = new DBLPlayers();
Player player = players.SelectById(playerId);
Response.Redirect("DetalhesClube.aspx?Id=" + player.Team.ID.ToString());
}
protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
我怎样才能使用超链接来做到这一点?