Click here to Skip to main content
15,885,038 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I Want Picture Box in Asp.net not Image Control.is it possible.
Posted

Images are added to web forms with either a server side image control or a regular html img tag.
<asp:Image ID="Image1" runat="server" ImageUrl="yourImage.gif" />
<img alt="" src="yourImage.gif" />
 
Share this answer
 
v2
No, not even remotely. You can use HTML to do what a picture box does in scaling an image, but you can't use a winforms control in a web app, nor does the picturebox give you anything to make you want to.
 
Share this answer
 

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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