Hi,
I am converting a DAP/MS Access application to ASP/MySql. I have an IFrame which contains a database table. It's a simple library application. I want to query the table and display the results, such as display all authors with certain criteria. With DAP I built the query and used serverfilter as in the following (unrelated) example.
window.frames("IFrm").location = 'DAP2.htm?serverfilter="Id='+frm1.PersonId1.value+'"';
How can I do this in asp.net?
Thanks,
pwright