ASP.net design question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

for an ASP.net app that is to handel 300 images, would or would not be a good
practice, not to insert images into SQL database table and just add each
image to the webform via reteriving from HD and store other info's for each
image into the SQL database? how is it done normaly? thanks for help
 
Ben,

you should save the location of the image (relative to your app) with the
other info's in the database and then when loading the page displaying the
image just set url property of your image properly.

Regards,
Michael
 
thanks Michael

Michael Groeger said:
Ben,

you should save the location of the image (relative to your app) with the
other info's in the database and then when loading the page displaying the
image just set url property of your image properly.

Regards,
Michael
 
Back
Top