For example, I have an Asp.net MVC application in the path D:/myprojects/sample
and I have placed static files in E:/files
.
I don't want to place static files in content folder since static files are very large in size. Is it possible to use files in E:/files
in my application? How?
I want to display static html files inside frame as below
< iframe id="content-frame" src="E:/files/index.html" width="100%" frameborder="0">
But i am getting alert in Firefox as "Firefox doesn't know how to open this address, becuase the protocol (e) is not associated with any program".
Will this issue be resolved if virtual directory is created in IIS?
Thanks for the replies.