好吧,這已經是一個非常簡單的問題。我似乎無法在任何地方找到答案。首先 - 我不是任何類型的網絡開發人員,我是一個老派的C編程人員 - 所以不要爲我可能是一些相當瑣碎的東西而激怒我:)安裝ASP.NET應用程序
我需要編寫一個小的證明 - 使用ASP.NET的概念web應用程序。我第一次嘗試創建一個「Hello World!」應用程序。所以我打開了Visual Studio,並創建了一個新的Web應用程序。我有我的Default.aspx文件,它調用Visual Studio自動創建的helloworld.dll中的C#函數。
我在本地機器上安裝了IIS,並在wwwroot子目錄中創建了一個虛擬目錄。我把Default.aspx和helloworld.dll放在那個目錄下。現在,當我瀏覽到該頁面時,我看到以下內容。
Server Error in '/test' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'HelloWorld._Default'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="HelloWorld._Default" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Source File: /test/default.aspx Line: 1
顯然,IIS不知道在哪裏尋找.dll或類似的東西。我只是不知道如何註冊.dll與IIS(或誰管理這些東西在.net中),以便它可以找到它需要的功能。
有人可以讓我知道如何在IIS上「安裝」ASP.NET應用程序嗎?
你的代碼是什麼樣的?在.aspx和.aspx.cs中 – 2008-11-17 23:45:56