i use a 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
Open in new window
or calling Response.Redirect:
Open in new window
change the width/height according to your needs.
cheers