在我的一个页面中,我在 CodeBehind 中关注以重定向到另一个页面。
protected void btnEASYBRIEF_Click(object sender, EventArgs e)
{
Response.RedirectToRoutePermanent("../Prints/EASYBRIEF.aspx?" + grdFlights.SelectedDataKey.Value);
}
我想将其更改为“onclientclick”事件,例如
onclientclick="window.open('../Prints/EASYBRIEF.aspx?
+grdFlights.SelectedDataKey.Value')"
../Prints/EASYBRIEF.aspx 之后的正确文本如何
提前致谢