我如何纠正这一错误?
I m running .NET Framework v4.0.30319 so the Framework shouldn t be an issue. I m not using any DLL files or bin directories. How do I setup the IIS/Virtual Directory if I m using Forms Authentication for the whole website using VS2010?
说明: 在分配满足这一请求所需的资源时出现了错误。 请审查以下具体的细微错误细节,并适当修改你的来源档案。
Parser Error Message: Could not load type ACAWebApplication.Pages.State_Carrier_Search .
Source Error:
Line 1: <%@ Page Title="ACA Web App - State Carrier Search" Language="C#"
MasterPageFile="~/Pages/User.Master" AutoEventWireup="true"
CodeBehind="State_Carrier_Search.aspx.cs"
Inherits="ACAWebApplication.Pages.State_Carrier_Search" %>
Line 2: <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent"
runat="server">
Line 3: <style type="text/css">
Source File: /Pages/State_Carrier_Search.aspx Line: 1
The Codebehind for State_Carrier_Search.aspx.cs file:
namespace ACAWebApplication.Pages
{
public partial class State_Carrier_Search : System.Web.UI.Page
{
protected void Page_LoadS(object sender, EventArgs e)
The Code for State_Carrier_Search.aspx file is as follows:
<%@ Page Title="ACA Web App - State Carrier Search" Language="C#" MasterPageFile="~/Pages/User.Master" AutoEventWireup="true" CodeBehind="State_Carrier_Search.aspx.cs" Inherits="ACAWebApplication.Pages.State_Carrier_Search" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
感谢!