I have a popup window that currently works for a specific 'surname' entry.
<a href="javascript
opup('send_email.asp?surname=<%=rsUsers("surname")%>',360,400,'no')">Send EMail</a>
My problem is how to write the same code using a surname AND first name. I seem to be having problems with the syntax. I tried
<a href="javascript
opup('send_email.asp?surname=<%=rsUsers("surname")%> AND first=<%-rsUsers("First")%>',360,400,'no')">Send EMail</a>
but it doesnt work!
<a href="javascript
My problem is how to write the same code using a surname AND first name. I seem to be having problems with the syntax. I tried
<a href="javascript
but it doesnt work!