Opening of files referred to in the aspx file in Visual Studio

Posted by Harihara Vinayakaram on Stack Overflow See other posts from Stack Overflow or by Harihara Vinayakaram
Published on 2010-06-17T04:03:43Z Indexed on 2010/06/17 4:13 UTC
Read the original article Hit count: 270

Filed under:

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

© Stack Overflow or respective owner

Related posts about visual-studio-2008