ivonsurf123
New member
- Joined
- Sep 13, 2024
- Messages
- 2
- Programming Experience
- Beginner
Hello,
I just have a question that I cannot find in Google, but I have this website that brings photos through a path that I have built in the code like this:
CODE:
// Base path configurable
string baseImagePath = ConfigurationManager.AppSettings["ImageBasePath"] ?? @"\\WCUPOBPROC1-A\Old_Check_Images";
When I run it in my local computer, it works perfectly and the path that shows in the web browser is this:
https://localhost:44339/Images.aspx
But now that I have published in the server to go Live as a website, It is not working and the path in the browser is:
https://fnweb.wescom.org/Old_Check_Images/Images.aspx
But It gave me a few errors:
Error 404:
Error occurred on recovery Image: Error 404:
no-image.png:1
GET https://fnweb.wescom.org/Old_Check_Images/no-image.png 404 (Not Found)
Any help to resolve this issue will be appreciate it. Thank you.
I just have a question that I cannot find in Google, but I have this website that brings photos through a path that I have built in the code like this:
CODE:
// Base path configurable
string baseImagePath = ConfigurationManager.AppSettings["ImageBasePath"] ?? @"\\WCUPOBPROC1-A\Old_Check_Images";
When I run it in my local computer, it works perfectly and the path that shows in the web browser is this:
https://localhost:44339/Images.aspx
But now that I have published in the server to go Live as a website, It is not working and the path in the browser is:
https://fnweb.wescom.org/Old_Check_Images/Images.aspx
But It gave me a few errors:
Error 404:
Error occurred on recovery Image: Error 404:
no-image.png:1
GET https://fnweb.wescom.org/Old_Check_Images/no-image.png 404 (Not Found)
Any help to resolve this issue will be appreciate it. Thank you.