I have in my funcs.cs file:\[code\]using System;using System.Collections.Generic;using System.Web;public static class AuthData{ public const string USERNAME = "zheref"; public const string PASSWORD = "Altairis";}\[/code\]And I'm trying to access the USERNAME and PASSWORD constants in my AuthData class from my Razor Code (auth.cshtml file):\[code\]@{ if(IsPost){ var u = Request.Form["username"]; var c = Request.Form["password"]; if(u == AuthData.USERNAME && c == AuthData.PASSWORD) { Response.Redirect("~/default"); } else { Response.Redirect("~/logon"); }}}\[/code\]This is generating a Compilation Error:"An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately."If that's not the way I'm not sure how to do that. Thanks.