Working on our restricted system means I cant drop class librariess into the app_bin/bin/App_Code basically any normal folder, so I'm currently linking to my class library as follows...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="~/cs/codebehind.cs" Inherits="codebehind" %>
<%@ Assembly Src="~/cs/mycodelibrary.cs" %>
The problem I'm trying to solve is how would I reference the class library as a file in the codebehind so I don't need to have another thing on the page, and VS stops telling me the things in the assembly don't exist.
i.e
using "~/cs/regionalPages.cs"
Quick addition, adding the mycodelibrary.cs as above does work. I'm just trying to find a better way.
And i should reaffirm that I have no access to normal .net folders, if I did I wouldn't be asking this seemingly dumb question.