- Jan 21, 2003
- 4,965
- 0
- 0
I am trying to tie an Access DB into a webpage using regular ASP, not .NET.
Also, how can I make it so that only one record shows up on each page and then by using Next/Previous be able to go back and forth between the other records?
EDIT: Alright, I have gotten pretty far AFAIK. As of now I can sort by letter, last name, etc. I even have the links to go to the member page from the directory, but it is not going to the actual member selected.
This is the code I have on the "main directory" page to link to the individual records:
<a href="odbcmember.asp?Start=0&Offset=15&LastName=<%=RS("LastName")%>"> <%=RS("LastName")%>- <%=RS("FirstName")%>,<%=RS("FamilySpouse")%></a>
When I click on the members Last name it should take me to that member, but it is just taking me to generic member, the first one I created.
Also, how can I make it so that only one record shows up on each page and then by using Next/Previous be able to go back and forth between the other records?
EDIT: Alright, I have gotten pretty far AFAIK. As of now I can sort by letter, last name, etc. I even have the links to go to the member page from the directory, but it is not going to the actual member selected.
This is the code I have on the "main directory" page to link to the individual records:
<a href="odbcmember.asp?Start=0&Offset=15&LastName=<%=RS("LastName")%>"> <%=RS("LastName")%>- <%=RS("FirstName")%>,<%=RS("FamilySpouse")%></a>
When I click on the members Last name it should take me to that member, but it is just taking me to generic member, the first one I created.