Hello, i'm just a beginner in the world of ASP i have managed to link an access database and have the results displayed in an asp file.
What i would like to ve able to do is:
- have the hyperlinks as clickable hyperlinks instead of text
- e-mail links to be displayed as actual mailto: links if this is possible
- how do you change the output font to say tahoma in size 10? as its in times new roman
- I wanted to put jpeg images into the microsoft access table, i set the data type as an 'ole object' but i dont get any output?
i pasted the code below
<% Response.buffer = true %>
<html>
<head>
<title>gallery</title>
</head>
<body>
<% Dim rs
Set rs = Server.CreateObject ("ADODB.Recordset"
rs.Open "mk4", "DSN=mk4"
While Not rs.EOF
Response.Write "ID : " & rs("Username"
& "<br>"
Response.Write "First Name : " & rs("Name"
& "<br>"
Response.Write "e-mail : " & rs("e-mail"
& "<br>"
Response.Write "URL : " & rs("URL"
& "<br>"
Response.Write "Location : " & rs("Location"
& "<br>"
Response.Write "Modifications : " & rs("Modifications"
& "<br>"
Response.Write "images : " & rs("images"
& "<br>"
Response.Write "<br>"
rs.MoveNext
Wend
rs.Close
Set rs = Nothing %>
</body>
</html>
thanks for any help in advance - it is greatly appreciated!!
What i would like to ve able to do is:
- have the hyperlinks as clickable hyperlinks instead of text
- e-mail links to be displayed as actual mailto: links if this is possible
- how do you change the output font to say tahoma in size 10? as its in times new roman
- I wanted to put jpeg images into the microsoft access table, i set the data type as an 'ole object' but i dont get any output?
i pasted the code below
<% Response.buffer = true %>
<html>
<head>
<title>gallery</title>
</head>
<body>
<% Dim rs
Set rs = Server.CreateObject ("ADODB.Recordset"
rs.Open "mk4", "DSN=mk4"
While Not rs.EOF
Response.Write "ID : " & rs("Username"
Response.Write "First Name : " & rs("Name"
Response.Write "e-mail : " & rs("e-mail"
Response.Write "URL : " & rs("URL"
Response.Write "Location : " & rs("Location"
Response.Write "Modifications : " & rs("Modifications"
Response.Write "images : " & rs("images"
Response.Write "<br>"
rs.MoveNext
Wend
rs.Close
Set rs = Nothing %>
</body>
</html>
thanks for any help in advance - it is greatly appreciated!!