Wrox Programmer Forums
|
HTML Code Clinic Do you have some HTML code you'd like to share and get suggestions from others for tweaking or improving it? This discussion is the place.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the HTML Code Clinic section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 10th, 2005, 07:27 AM
Registered User
 
Join Date: Sep 2005
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default asp problem

how to make a image hyperlinked using response.write

i tried but did not succeed

here is the code
Response.Write "Next: <A HREF='" & MyPageNext & "'>" & MyDescriptNext & <img src="Arrow.gif" border="0"> "</A> &nbsp&nbsp"

here MyPageNext and MyDescriptNext are variables and i want to print like this
Next: [u]xxxxxxx[image]</u>

 
Old September 12th, 2005, 11:28 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Code:
Response.Write "Next: <A HREF='" & MyPageNext & "'>" & MyDescriptNext & "<img src=""Arrow.gif"" border=""0""></A>&nbsp&nbsp"
or, just in case you have encodable characters in your variables:
Code:
Response.Write "Next: <A HREF='" & Server.HTMLEncode(MyPageNext) & "'>" & Server.HTMLEncode(MyDescriptNext) & "<img src=""Arrow.gif"" border=""0""></A>&nbsp&nbsp"
--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Custom HTTP 404 Problem w/ASP to ASP.NET kwilliams ASP.NET 2.0 Professional 7 November 26th, 2007 04:17 PM
Problem in asp label vickytarun ASP.NET 1.0 and 1.1 Basics 2 November 3rd, 2007 06:17 AM
Problem with ASP AMITAMIT Classic ASP Databases 1 March 16th, 2007 11:05 AM
Server to Server XML Problem (ASP.NET to ASP) Enwood XML 7 April 26th, 2006 03:22 AM
ch15 adduser.asp problem beginning asp 3 ellie Access 1 December 30th, 2004 01:49 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.