I have a database with interface.
I have a webpage with javascript popups. the links are as follows
[HTML]<a href="http://www.site.com" id="tip297">name</a>[/HTML]
in the head I have the external js file linked where all the ids are kept.
they are like this
Expand|Select|Wrap|Line Numbers
- var tip6 = '<img src="a/6.jpg"><div class="tp2">name</div>';
So I am trying the following. I have an unused form field in my database interface that will insert text into the page for each link dynamically. I am trying to insert the line like
Expand|Select|Wrap|Line Numbers
- var tip6 = '<img src="a/6.jpg"><div class="tp2">name</div>';
The insertion code is asp like this
Expand|Select|Wrap|Line Numbers
- <%=rsCard("CardDescription")%>
Hope someone understands my language.
Thanks
Richard