473,769 Members | 7,315 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

wrapping text around images using response.write

I cannot find any information on how to insert an image into a block of text
and have the text wrap around the image. All if the text and graphics in
the client's site are being pulled from the database using response.write.
When I write straight HTML, it is easy to place an image into a block of
text and align the image right or left, having the text wrap around the
image.

Can anybody offer any suggestions?

Thanx
CobyfromBrookly n
Jan 7 '06 #1
3 5586
Coby Herd wrote:
I cannot find any information on how to insert an image into a block
of text and have the text wrap around the image. All if the text and
graphics in the client's site are being pulled from the database
using response.write. When I write straight HTML, it is easy to place
an image into a block of text and align the image right or left,
having the text wrap around the image.

Can anybody offer any suggestions?

Thanx
CobyfromBrookly n

http://css.nu/examples/align.html
http://glish.com/css/

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Jan 7 '06 #2
I don't think I'm understanding you

you know how to align your image left or right when writing HTML, the why
not spit out the same HTML wit response write
"Coby Herd" <ch***@nyc.rr.c om> wrote in message
news:uK******** *****@TK2MSFTNG P15.phx.gbl...
I cannot find any information on how to insert an image into a block of
text
and have the text wrap around the image. All if the text and graphics in
the client's site are being pulled from the database using response.write.
When I write straight HTML, it is easy to place an image into a block of
text and align the image right or left, having the text wrap around the
image.

Can anybody offer any suggestions?

Thanx
CobyfromBrookly n

Jan 7 '06 #3
Gazing into my crystal ball I observed "Coby Herd" <ch***@nyc.rr.c om>
writing in news:uK******** *****@TK2MSFTNG P15.phx.gbl:
I cannot find any information on how to insert an image into a block of
text and have the text wrap around the image. All if the text and
graphics in the client's site are being pulled from the database using
response.write. When I write straight HTML, it is easy to place an
image into a block of text and align the image right or left, having
the text wrap around the image.

Can anybody offer any suggestions?

Thanx
CobyfromBrookly n

<head>
<style type="text/css">
img {float:left}
</style>
</head>
<body>
<% 'start loop %>
<p><img src="<%=image%> " alt="<%=verbiag e%>"><%=verbiag e%></p>
<% 'end loop %>
</body>

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jan 10 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
3861
by: Roy Smith | last post by:
I've got a C library with about 50 calls in it that I want to wrap in Python. I know I could use some tool like SWIG, but that will give me a too-literal translation; I want to make some modifications along the way to make the interface more Pythonic. For example, all of these functions return an error code (typically just errno passed along, but not always). They all accept as one of their arguments a pointer to someplace to store...
2
13935
by: Suzanne Boyle | last post by:
I have the following code in a webpage: <p><img src="images/clydesdale.gif" width="100" height="41" style="float: left;" /> <strong>Test</strong><br /> Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. <br /> visit website
19
6931
by: dmiller23462 | last post by:
Hi guys....I have absolutely NO IDEA what I'm doing with Javascript but my end result is I need two text boxes to stay hidden until a particular option is selected....I've cobbled together the JavaScript in this code from a couple different sites but I'm not 100% sure what each line is doing...This is the ASP code that I'm using for the page....Take a look at the JavaScript code and please let me know what each line is doing....I have been...
3
2227
by: Coby Herd | last post by:
I 've built a site for a client using .asp and eveything is working fine except I cannot figure out how to wrap text around an image. Everything is pulled from the database using response.write. The code works correctly but I just can't seem to figure out how to do it? I've been searching for weeks about info on how to do this - to no avail. Can anybody offer any help? thanx cobyfrombrooklyn
4
1285
by: SergioT | last post by:
Hi I got a sql's table with images and i need to show the image on a popup with some text, my problem is that the text did not show up only the image '------------Show the image ( works fine) Response.Buffer = True Response.ContentType = oImg.Formato.Trim Response.BinaryWrite(oImg.Imagen)
1
1457
by: Star258 | last post by:
I have a few paragraphs on my site and an ul that I’ve set up with a css background image. I wanted the image separate from the main background and still have the ability to type on it. Is there a way to get the text to wrap around the ul and the image? Or a better way to set it up in the first place? Right now I can only see how to have text above it and text below it. Any help would be great Thanks <!DOCTYPE html PUBLIC...
1
4222
by: littlealex | last post by:
IE6 not displaying text correctly - IE 7 & Firefox 3 are fine! Need some help with this as fairly new to CSS! In IE6 the text for the following page doesn't display properly - rather than being aligned to the top, along with the slideshow and link buttons, you have to scroll down to see the text - how can I make IE6 display correctly? http://geekarama.co.uk/new_home.html here is the code for new_home.html and following that the CSS...
1
1294
by: Hamayun Khan | last post by:
Hi All I have text files having queries like below. INSERT INTO tblJobScrap (,,,,,,,,,) VALUES ('http://www.aberdeencity.gov.uk/webapps/images/genericicons/acc-logo.gif','Aberdeen','Scotland','School Crossing Patroller','No fixed closing date','£6.0100 p.h.','£6.37-£6.65 p.h.','Permanent','','http://www.aberdeencity.gov.uk/webapps/jobs/jobDetails.asp?id=5591') INSERT INTO tblJobScrap (,,,,,,,,,) VALUES...
1
4342
by: DevInCode | last post by:
I'm trying to get text to wrap around a round image. Wrapping around a square image is no problem. The image I am using is obviously square, but its transparent in such away that it looks round (ie a picture of a wheel). My idea was to cut the image into slices then have them display on top of one another. But they don't stack, they just go in a line across the page, I think because of the float. My images are on the right side of the...
0
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10049
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9998
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9865
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8876
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3567
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.