Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Use HTML Tags to drag info from Access

Status
Not open for further replies.

sammybee

Programmer
Sep 24, 2003
103
GB
Hi All,

I want to use HTML tags to drag info from MS Access and display as a form, how would you create the link between the 2?

Cheers

Sam
 
sammybee, there are many ways to do that. To start with MS Acces allows HTML tags in the fields. So you can use the <a> tags in the Access records.

Depending on what server side scripting you use, you can just call the fieldname in the code, to display the link. In Coldfusion, you can do it as: <a href=&quot;#myLink#>Click me</a>, this will pull whatever &quot;myLink&quot; is from Access and display in the screen.


____________________________________
Just Imagine.
 
You can't do it with purely HTML tags, you need some kind of server-side language to query the database and put the results on a page. There are several such languages to pick from - ColdFusion, asp, etc...

An alternative approach that I've used in the past is to write code in Access to create a series of static pages that could then be uploaded. A bit of a pain, but a possibility if you can't use server-side methods.

-- Chris Hunt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top