Ask a Question related to ASP Database, Design and Development.
-
Larry Rekow #1
adding a hyperlink to a field in a table created from a d/b query (Access)
I've done this using Frontpage; and I know I've done it in the past
using just ASP. I'm trying to stay away from FP on this site, so....
Can someone tell me what is wrong with this?
<td><font size="2"> <%=rs("FILE_NUM")%><a
href="newtest5.asp?blah2"=<%=rs("FILE_NUM") %>>"</a></font></td>
this line loops and the FILE_NUM field is supposed to become a
hyperlink to newtest5.asp
I've googled and searched, and looked for my past code, but can't find
it. I did it once also with a procedure that I modified, but I just
want to do it without the proc.
Thanks if you can help.
Larry Rekow
- - - - - - - - - - - - - - - - - -
"Forget it, Jake. It's Chinatown."
Larry Rekow Guest
-
sql query returned a to table in a field
i have a table that returns information from a record set. This works fine. I have one field on the table that needs to return a query from another... -
Error accesing access via query created in FrontPage
After I run IIS lockown on windows 2000 standard with IIS 5.0. My website - built using FrontePage is getting the following error when accessing... -
ASP / Access: use of same table twice in one query
Hi, In a query I use the same table twice: Select u.*, ud.*, dep.*, u2.* from users as u, departments as dep, user_in_departments as ud, users... -
Forms Pivot Table - adding field
I'm rather new to Access and I haven't been able to find an answer to this situation in Access Help, Access Bible or in another training guide. ... -
Adding a NULL Value in a Currency table in an Access DB
Hello there, I have a problem with Adding a NULL Value in a Currency table in an Access database. The problem accurs when i'm trying to Update an... -
Bob Barrows [MVP] #2
Re: adding a hyperlink to a field in a table created from a d/b query (Access)
Larry Rekow wrote:
You have unnecessary delimiters:> I've done this using Frontpage; and I know I've done it in the past
> using just ASP. I'm trying to stay away from FP on this site, so....
>
> Can someone tell me what is wrong with this?
>
> <td><font size="2"> <%=rs("FILE_NUM")%> <a
> href="newtest5.asp?blah2"=<%=rs("FILE_NUM") %>>"</a></font></td>
>
<a href="newtest5.asp?blah2=<%=rs("FILE_NUM") %>></a>
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows [MVP] Guest



Reply With Quote

