Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 asp small problem

Author  Topic 

jhermiz

3564 Posts

Posted - 2004-03-22 : 14:24:53
Dreamweaver seems to have found a small error I cant seem to fix...


<td width="284"><a href="mailto:<%Response.write(rs("LoginEmail"))%>"</a><center><% Response.write(rs("LoginEmail")) %></center></a></td>


It highlights where I start with mailto...all the way upto LoginEmail. I think it has to deal with the way I have done "mailto:<%....

Can someone fix that line up for me..

Jon

TurdSpatulaWarrior
Starting Member

36 Posts

Posted - 2004-03-22 : 15:04:14
<td width="284" align="center"><a href="mailto:<%=rs("LoginEmail")%>"><%=rs("LoginEmail")%></a></td>
Go to Top of Page

jhermiz

3564 Posts

Posted - 2004-03-22 : 15:13:17
quote:
Originally posted by TurdSpatulaWarrior

<td width="284" align="center"><a href="mailto:<%=rs("LoginEmail")%>"><%=rs("LoginEmail")%></a></td>



Doesnt display any data...

just shows a < on the page...
Go to Top of Page

jhermiz

3564 Posts

Posted - 2004-03-22 : 15:17:56
quote:
Originally posted by TurdSpatulaWarrior

<td width="284" align="center"><a href="mailto:<%=rs("LoginEmail")%>"><%=rs("LoginEmail")%></a></td>



Nevermind wasnt on production server
working now!

Thanks,
Jon
Go to Top of Page
   

- Advertisement -