我有4种不同的解决方案,一种解决方案包含母版页。该项目名称是具有母版页的MainView。并且包含包含home.master页面的Resources文件夹。
我想在其他解决方案中引用此母版页。我正在使用Visual Studio 2010.
public const string VirtualMasterPagePath = "~/";
public const string ewmainMasterPageFileLocation ="~/Resources/home.master";
我在母版页中有上面的代码行。
和
protected override void OnPreInit(EventArgs e)
{
MasterPageFile = clsVirtualPathProvider.ewmainMasterPageFileLocation;
base.OnPreInit(e);
}
我用这些代码行来引用母版页。
获取错误,如:
file "/home.master" does not exists.
请帮帮我...谢谢..