What is the best way to let users upload pictures to my WPF application -


i have wpf intranet app running in trusted mode (local only). users able upload image , attach article on newsletters section. having trouble deciding these images stored. please provide me opinions. @ present have few ideas myself; have aspx page runs parallel app, , run inside browser(i-frame). page handle upload , display of image. also, have users copy directly network share. seems there should more elegant sollution not aware of. ideas?

don't force solution towards aspx because know how there. it's unnatural build page, host browser show page etc, upload image.

it's quite simpler in desktop client on web page. have "load file dialog" - use filepath user wants upload, , when have can either:

  • copy (inside application) share,
  • or if have service - send through method call,
  • or can store inside database (recommended if files small)

there's lots of options here... depends if client has connection db, have service in between, etc...


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -