Konrad Zarnowski
Konrad Zarnowski

Reputation: 1

Image display in ASP

How can i display an image with a direct link (such as "http://www.utexas.edu/courses/mis325/hw/hw11a.gif") when coding with asp/vb?

Upvotes: 0

Views: 120

Answers (1)

Rodolfo
Rodolfo

Reputation: 4183

I don't understand the question. Like this?...

<a href="http://www.utexas.edu/courses/mis325/hw/hw11a.gif"><img src="http://www.utexas.edu/courses/mis325/hw/hw11a.gif" alt="" border="0"></a>

You didn't say where it should link to, so I assumed to the same image?
Also, this is a plain HTML link, not sure what you mean by how to do it in ASP/VB

Upvotes: 3

Related Questions