I took over a asp.net project from my co-worker. When I start running the project, Application_Error() in Global.asax.cs throws an error saying file does not exist. Someone recommended using HttpContext.Current.Request.Url.ToString() to get the file path of the missing file. It returned favicon.ico. I am not sure what this means and how do I fix it?
Share
It means that you are missing favicon.ico file at the required path.
In error thrown , it will show you a full path.
Please check whether you have that file in specified location.If it exists then check its properties whether it is hidden or read only.The problem must be with your missing file only.
Thanks