我是網絡編程的新手,所以在開始時我在記事本中創建了一個html簡歷,現在我試圖使用Visual Studio 2010並嵌入該html頁面(簡歷)在它。當我執行的網站 一些目錄列表中鉻被打開了,當我下面的異常檢查調試輸出在那裏第一次機會異常system.web.httpexception文件不存在
A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
之後,我做了兩個變化 1,我選擇了起始頁 2 - 檢查
CLR exceptions > System.web > System.Web.HttpException exception
從調試 - 拋出>例外
後,我得到了同樣的錯誤與兩個選擇繼續進行或中斷和附加信息未處理的異常:文件不存在
這是我的HTML標籤
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Official CV</title>
<script type="text/javascript">
function displayDate() {
document.getElementById("demo").innerHTML = Date();
}
</script>
</head>
<body>
<p id="demo">This is paragraph.</p>
<button type="button" onclick="displayDate()"> Display Date</button>
<table>
<tr>
<td>
<h1>Abbas</h1>
<address> House no 659, Street no 62, G-11/2, I </address>
00923215250936
</br>
<h4>
</br>
<a id="#tips" href="http://abbasnaqvi512.tumblr.com/"> Go to my site </a>
</h4>
</td>
<td>
<img src="C:\Users\Abbas\Documents\My Web Sites\WebSite1\abbasShah.jpg" width="104" height="142" alt="Abbas " >
</td>
</tr>
</table>
<a id="Top"></a>
<a href="#Bottom">Bottom</a>
<hr/>
<table border="1">
<caption>Education</caption>
<tr style="background-color:yellow">
<th>Degree Name</th><th>School</th><th>City</th>
</tr>
<tr>
<td> BS </td> <td> N</td><td>I</td>
</tr>
<tr>
<td>F</td> <td> P</td> <td>S</td>
</tr>
<tr>
<td>M</td><td>C</td><td>S</td>
</tr>
</table>
<a id="Bottom"></a>
<a href="#Top">Top</a>
</body>
</html>
我沒有在.cs文件中寫任何東西 我不能理解我搜索的大部分內容。善意幫助我理解我的謎團並解決它。
確實'WebForm1.aspx.cs'存在嗎?如果您沒有服務器端控件,爲什麼使用ASP.NET? –
@DStanley我添加了WebForm1.aspx作爲一個項目,因此它存在,並且前四行與已寫入的相同 – Charlie