Click here to Skip to main content
15,885,800 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Plz suggest me how i bind the content in asp.net c#. The content is dynamic and that will wrap around the image.
Posted
Comments
n.podbielski 30-Oct-12 15:49pm    
If you want to make wrap text around image like in word, then i dont think it's possible. Maybe there are some hacks but it is restriction of html. It have box model. Box. You can wrap several boxes around image but not one box with texts.
Sandeep Mewara 30-Oct-12 22:38pm    
Though you have a solution suggested, I am not too sure of what exactly yuou are looking for. If the solution does not solve your issue then you need to be more clear.

1 solution

This has nothing to do with ASP.NET, this is HTML and CSS, nothing else. Clearly explained here:
http://www.tizag.com/cssT/float.php[^].

I have no idea what do you mean by "binding" (trendy word? :-)). You either generate text in ASP.NET on server side in response to HTTP request. Call whatever method/property you have developed for text output — only you can know what it it. Alternatively, you can generate code in JavaScript on client side and assign the result to the content of some HTML DOM element. Every time you say "dynamic", you need to explain in response to what event it should be generated. It can be anything, so — program it accordingly.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900