有一个datagrid:<asp:datagrid id="dgrdReqLine">
<Columns>
<asp:TemplateColumn HeaderText="物资编码">
<ItemTemplate>
<asp:Label id="lblPartNo" runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.物资编码") %>'></asp:Label>
</ItemTemplate>
<FooterTemplate>
<asp:TextBox id="txtPartNo" MaxLength="14" Width="120" runat="server"></asp:TextBox>
<img src="..\Images\Find.gif" onclick="Javascript:window.open('ValueList.aspx');">
</FooterTemplate>
</asp:TemplateColumn>  
</Columns>
</asp:datagrid>点击image后打开了ValueList.aspx页面,我在选取了一个值后就关闭这个页面返回,并需要把值赋给原来页面中页脚FooterTemplate里的id为txtPartNo的textbox控件。在下面的语句中
<script language=JavaScript>window.opener.document.all.*.value='" & e.Item.Cells(1).Text & "';window.close();</script>"
* 处我应该怎么写?