Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Image in table using ASP .NET

Status
Not open for further replies.

IMFCSDMN

Technical User
May 24, 2003
8
CA
Simple question. It's basically HTML but I'm using ASP .NET on VS 2003 so therefore feel free to respond ASP .NET solutions.

I just want to have a image in the following table.

<td align=&quot;left&quot; width=&quot;150&quot; height=&quot;350 >

I want a block which will be a picture.

Where do I save the actual gif?

Thanks.
 
IMF: You can create a folder, name it &quot;Photos&quot;, under the root directory, and save your images there - as individual files; or alternatively in a database table; the former is the technique I prefer -- and just reference the image in the img tag:

<img src=&quot;Photos\mypic.gif&quot; >

..providing a w/h if you need to etc... Bascially very simple.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top