Hi all,
I am having a weird issue with my website. I moved contents from one project to another one (inside of the same solution), to organize the solution. And after it, I created namespaces, and some of the classes seemed to lose their association with the .aspx
files. Then, I converted all the .aspx files to web application.
As I know, .aspx inheritances are made by "namespace.class". That's how I did. But the .cs file is full of mistakes like "the name 'xxx' does not exist in the current context".
This class works:
<-UsuarioCadastro.aspx->
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" Inherits="meuSite.Web.Usuario.UsuarioCadastro" Codebehind="UsuarioCadastro.aspx.cs" %>
<-UsuarioCadastro.aspx.cs->
namespace meuSite.Web.Usuario
{
public partial class Usua ...
Go to the complete details ...