Code for images

  • Thread starter Thread starter Marty
  • Start date Start date
M

Marty

I am writing a web based C# application that will allow users to post
images files to the server and also view them (like a photo album).
The back end database is Access.

If you have any good code references, please let me know.

Thanks.
 
Marty:
Here's an example I wrote...It's not the final version and there's a mistake
or two, ( I didn't specify a type on the signature for isntance) but they
are totally obvious...the rest of the code will work for you.
http://www.knowdotnet.com/testsite/articles/System_Net.html
If the images are actually in access vs. Access containing file refreneces,
this link should help http://www.vbdotnetheaven.com/Code/Sept2003/2175.asp

BTW, just my two cents, but if you are doing anything of consequence,
particularly with Images, I think MSDE will be much nicer to you over the
long run than Access...but that's just a suggestion..

HTH,

Bill
 
does msde require being run as a service? if so are there any negative
consequences to that from the point of view of writing an application
program (eg would you have to start and stop the service when the
application runs)? are there other potential gotchas (eg other would
applications using msde concurrently on other databases pose a problem)?

TIA
 
Back
Top