I used the following code in rowdatabound event
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onClick"] = string.Format("window.location = 'CandidateProfile.aspx?candidateID={0}';", DataBinder.Eval(e.Row.DataItem, "candidateID"))
}
I want to change it so the click event opens in a new window with specified height and width
how can I do that , plz help