I am trying to incorporate the code that is mentioned on this page in my ASP web application:
http://jquery.com/demo/thickbox/I have followed all the steps and here is my ASP page code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml"
>
<%@LANGUAGE="JavaScript"%>
<head>
<title>Sans Titre</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<meta name="generator" content="HAPedit 3.1">
<script src="javascript/jquery.js"
></script>
<script src="javascript/thickbox.j
s"></scrip
t>
<link rel="stylesheet" href="CSS/thickbox.css" type="text/css" media="screen" />
</head>
<body bgcolor="#FFFFFF">
<a href="images/single.jpg" title="add a caption to title attribute / or leave blank" class="thickbox"><img src="images/single_t.jpg" alt="Single Image"/></a>
</body>
</html>
----
However, I can't seem to get the function to work right. This is my first time coding in ASP and I don't know if I am implementing Javascript correctly or not. Any help would be graetly appreciate it.
Thanks
Start Free Trial