I have 200 websites on the same server. 90% of the content is the same. However the content is dynamic asp.net pages. Not static images.
For example:
- /site1/AdminPanel/
- /site2/AdminPanel/
- /site3/AdminPanel/
"AdminPanel" is identical on all 200+ sites. So it would be best to have it only in one place and have the other sites reference it. I am debating whether to use "symbolic link" or "virtual directories" What is better?
note: I do not use system.io anywhere.
thanks!