when i download the webpage with images, it is showing the following error,
Could not find file 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\index.jpg'. in vb.net
How to resolve it?
Hi,
You can Simply Check if file exists using below code.
C#
if (File.Exists("FilePath")) { } else { }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.