|
I am new to ASP programming. This operation that i am trying to do is working correctly in MS Access. Now, my boss wants me to web-enable; so that more people can access it. In MS Access, i have customer info as the main form(along with add, edit, delete button); and the TestRequest as the subform.
I do not have a login page; just a simple page asking for what date the user( or data entry operator) would like to retrieve the latest Test Request from tblcustomers (The Test Request form is a form that reside on the internet allowing customers to enter their own information and request which test they want us to perform.)
Based on that date, for example, 11/15/04, it will retrieve all data that is enter after that date. Then on the display list of customers -- the table contains customer info and which test(s) he/she have requested (The customers may request multiple tests to be perform.)
example of my results:
cust_id cust_name submitdate testrequest
1 Joe Smith 11/15/04 Test1
2 John Brown 11/16/04 Test1, Test2
Based on what test the customer requested, i want to make the Test Request (such as Test1) a hyperlink and also pass the customer's id to the TestRequest database table (since different customer can request the same test to be perform). i have the Cust_ID as a foreign key in the TestRequest table. The cust_id is an auto number. Am I doing this problem the wrong way?
thanks
|