req...@gmail.com
unread,Aug 8, 2008, 6:48:04 PM8/8/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting
Hey, I havnt done ASP in a LONG time and I've gotten stuck. I have the
code block below, but the a href link throws an error, if I take out
hte link section the page works fine. How do I insert the link into
the code block so no error is thrown?
<%
Dim a as string
Dim b as string
a = request.browser.browser
b = "IE"
if a <> b then
response.write( "You are using " & a & " to view this page. Please use
Internet Explorer.")
else
<a href="
http://example.site.com/index.aspx">
<img src="./button.jpg" border="0">
</a>
end if
%>