Note that there are some explanatory texts on larger screens.

plurals
  1. PODesigner.cs file creates errors automatically
    primarykey
    data
    text
    <p>Flawed as I am, I've received some unneeded help in creating errors in the form of Visual Studio 2008 adding incorrect code to a .designer.cs file. I appreciate, it is probably doing this because of my omission or error - but I will use the excuse that I am in actuality a fledgeling ASP.NET developer so I'm still learning.</p> <p>The relevant parts of the solution exporer look like this:</p> <pre><code>/Prototypes /Project01.Master - Project01.Master.cs - Project01.Master.designer.cs /SampleApplication.aspx - SampleApplication.aspx.cs - SampleApplication.aspx.designer.cs </code></pre> <p>I'm not entirely sure which files to include in the question, so I'll try and guess as best I can. Both the .Master.cs and SampleApplication.aspx.cs include themselves within the Project01.Prototypes namespace (though I'm not precious about that, it's something that was auto-added and worked while I didn't need to think about it).</p> <p>At the top of SampleApplication.aspx is the following (to enable access to some properties that the Master Page in theory, exposes.</p> <pre><code>&lt;%@ Page Language="C#" MasterPageFile="~/Prototypes/Project01.Master" AutoEventWireup="true" CodeBehind="SampleApplication.aspx.cs" Inherits="Project01.Prototypes.SampleApplication" %&gt; &lt;%@ MasterType VirtualPath="~/Prototypes/Project01.Master" %&gt; </code></pre> <p>Within the SampleApplication.aspx.designer.cs is:</p> <pre><code>namespace Project01.Prototypes { public partial class SampleApplication { public new Project01.Prototypes.Project01 Master { get { return ((Project01.Prototypes.Project01)(base.Master)); } } } } </code></pre> <p>All this results in the error:</p> <pre><code>The type name 'Prototypes' does not exist in the type 'Project01.Prototypes.Project01' </code></pre> <p>I can fix this error and get the build going again by getting rid of the 'Project01.Prototypes.' references within the class itself (leaving the namespace). My problem is that this is only a temporary solution as Visual Studio keeps adding it back in - so I guess the question is where is my mistake actually located?</p> <p>p.s. If it's important, I'm running in Visual Studio 2008 with a ASP.NET <b>MVC</b> Web Application.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload