Need direction for program

bonedoc

Well-known member
Joined
May 4, 2006
Messages
112
Programming Experience
Beginner
Well, I created an app thaat stores pictures and displays them in a picturebox. Each person has a password and can only view their images. I wanted to allow someone to get on the internet and have access to their images. All I would need is a picturebox to display the pics, and 2 buttons to browse between pics. I have all my code done, but I dont know what I need to do to allow someone to access the images on my computer from theirs. The images need to be on my computer, not on a server. I would like to open a port on my machine for this. Can someone give me ideas on what I need to do this?
 
hi

you need to make sure your web pages are in a directory in the wwwroot directory (this is the directory that all the websites are stored on a computer), and set up permissions via IIS.

you also need to ensure your database is set up to handle sql authentication (i am aware of 'impersonation' to avoid using sql authentication but i am unsure how to do it, even unsure of the thing in general) and adjust your connection string accordingly

hope that helps
regards
adam
 
Back
Top