Hi In edit mode of the gridview, I have provide date picker. For this I am opening a new page containing the calender using java script: window.open('CalendarPopUp.aspx?textbox=tbxSetDate','cal','width=250,height=225,left=270,top=180') But I am unable to take the selected date back to the parent page. When I am trying to access the textbox of the current row in gridview's rowcommand like: TextBox tbxSetDate= (TextBox)(GridView2.Rows[Int32.Parse(e.CommandArgument.ToString())].Cells[2].FindControl("TextBox2")); I am getting null instead of the textbox object. Any idea here? Regards, Rocky
Rakesh