This question is locked. New answers and comments are not allowed.
Is it possible for JustCode to "follow" #include directives? One coding style I follow is to put the dotNet header statements into an include file and add the #include directive to the top of all my pages. (I know that master pages can provide similar functionality - but I have a lot of code built under this "unique" style).
In those header includes, I have the @Page / Src / @Import etc. And JustCode fails to find the referenced codebehind and therefore my "public" variables.
On every ASPX page:
In those header includes, I have the @Page / Src / @Import etc. And JustCode fails to find the referenced codebehind and therefore my "public" variables.
On every ASPX page:
header.inc<!-- #include virtual="/includes/dotNet_Header.inc" --><!-- #include virtual="/includes/dotNet_Import.inc" -->Import.inc<%@ Page Language="C#"Inherits="KB.SharedLibrary.SharedCode"Src="/bin/lib_shared.cs"AutoEventWireUp="true"validateRequest="false"aspcompat="true" %>It would reduce all the misstated "errors" because JustCode is not following the #include command and the referenced "Src" attribute for the code-behind page. Again, I know this is not standard dotNet page construction.<%@ Import Namespace="KB.SharedLibrary"%><%@ Import Namespace="System.Collections"%><%@ Import Namespace="System.Collections.Generic"%><%@ Import Namespace="System.Data"%><%@ Import Namespace="System.IO"%><%@ Import Namespace="System.Xml"%><%@ Import Namespace="System.Xml.Serialization"%><%@ Import Namespace="System.Net"%><%@ Import Namespace="System.Net.Mail"%><%@ Import Namespace="System.Net.Mime"%><%@ Import Namespace="System.Drawing"%><%@ Import Namespace="System.Web.UI.HtmlControls"%>