Opening of files referred to in the aspx file in Visual Studio
- by Harihara Vinayakaram
Hi
I am a new entrant in the .NET world . I am using Visual Studio 2008 . I have the following code
<%@ MasterType VirtualPath="~/Themes/xyz/Common/splash.Master" %>
<%@ Reference VirtualPath="~/Themes/abc/Common/master.Master" %>
<%@ Import Namespace="MyServer.Components" %>
<%@ Import Namespace="MyServer.Discussions.Components" %>
<%@ Register TagPrefix="ATE" TagName="AskTheExpert" Src="~/Themes/xyz/Controls/AskTheExpert/AskTheExpert.ascx" %>
I have the following questions :
Is it possible to open the splash,Master , master.Master , AskTheExpert.ascx
In the java world I can do a Ctrl+ click in IntelliJ to open the file . Is there a similar facility in VS
Thanks
Hari