System.Web.HttpException is not a valid virtual path exception
Solution :
.NET is expecting a path like
Which it will translate into a physical path while deployment .
Solution :
.NET is expecting a path like
~/folder/file.txt
or
/folder/file.txt
Which it will translate into a physical path while deployment .
Comments
Post a Comment