0

我在 rowdatabound 事件中使用了以下代码

if (e.Row.RowType == DataControlRowType.DataRow)
 {
 e.Row.Attributes["onClick"] = string.Format("window.location = 'CandidateProfile.aspx?candidateID={0}';", DataBinder.Eval(e.Row.DataItem, "candidateID"))

}

我想更改它,以便单击事件在具有指定高度和宽度的新窗口中打开

我该怎么做,请帮忙

4

1 回答 1

0

似乎您可以申请window.open(url)并在那里设置一些参数来控制该窗口。

于 2012-12-26T07:06:11.520 回答