HTML . ASPX - .
HTML, , ( - HTML ). (, "ShowContent.aspx" ), HTML, ASP. , ASPX .
, . , JUST ASPX, (http://shared.yoururl.com). , , WebRequest:
WebRequest wrContent = WebRequest.Create("http://shared.yoururl.com/CommonInformation.aspx");
Stream objStream = wrContent.GetResponse().GetResponseStream();
StreamReader objStreamReader = new StreamReader(objStream);
string pageContent = objStreamReader.ReadToEnd();
Then display pageContent on a blank page.
If your shared pages are data entry formats, I am afraid that your only hope is to place them in a shared source directory that shares several projects. You would share the source, but publish the files with each project. This is likely to be messy: you can make changes to one that violates other projects, because now they have the possibility of interdependence.
source
share