Hi,<br> I am trying to build the data form wizard hyperlinking feature on the <br>DTC<br>grid in VI6 Pro. This is using the procedure described in Q192665 I <br>have<br>the function set up on the same asp page as the grid. I have the grid <br>field<br>setup as follows:<br>="<a href=javascript:thisPage.navigate.ShowRecord (" +<br>contract.absolutePosition +" >"+ Server.HTMLEncode ([Project]) + " <br></a>"<br><br>The function:<br><br><SCRIPT LANGUAGE=javascript RUNAT=server><br><br>function ShowRecord(strAbsolutePosition)<br>{<br> contract.moveAbsolute(parseInt(strAbsolutePosition<br>  )<br> _fmgrEval_SetMode('FormView');<br><br>}<br></SCRIPT><br>---------------------------------------------------------<br>Contract is the name of the recordset.<br>I also have VBScript in the section before the javascript code. All<br>contained within the <HEAD> section of the page.<br>---------------------------------------------------------<br>The VB script:<br><br><SCRIPT ID=serverEventHandlersVBS LANGUAGE=vbscript RUNAT=Server><br><br>Sub btnUpdate_onclick()<br>contract.updateRecord<br>contract.requery<br>End Sub<br><br>Sub btnRequery_onclick()<br>contract.requery<br>End Sub<br><br>Sub btnNew_onclick()<br>session("newEval"=0<br>Response.Redirect "addNewEval.asp"<br>End Sub<br><br>Sub btnDelete_onclick()<br>contract.deleteRecord<br>End Sub<br><br><br><br></SCRIPT><br><br><br>The problem is when I use IE5 to click on the link in list view I get <br>an<br>error indicating that IE is unable to download eval.asp(name of page I <br>am<br>working with) from site. I am running on Win98 and PWS. I have all <br>options<br>installed from the install disk for PWS server and VI6 server. In <br>Netscape<br>4.7 I get no response when I click.<br>I have tried changing the name of the function to some generic <br>name(MyTest)<br>to alleviate a possible keyword problem in the function name.<br>I also would like to know if anyone out there knows where I can find <br>the<br>"hidden" methods of the various DTC's that this article speaks of. <br>Actually<br>the only one it mentions is the one of the form manager's hidden <br>methods. I<br>would not be surprised if there were more though.<br>Thanks in advance<br>DMH<br>