system cannot locate the resource specified. Error processing resource
Hey guys,
can anyone please help me out with my error problem "system cannot locate the resource specified. Error processing resource "
I'm new to asp.Net. ( I just bought a book "Build your own ASP.Net 2.0 Web Site using C# & VB" by Cristian Darie & Zak Ruvalcaba) and was following the examples in the book. The author suggested that I use Notepad to create this simple file FirstPage.aspx. The code as follow:
----------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/dtd/xhtml -Strict.dtd">
<html>
<head>
<title>My First ASP.NET 2.0 Page</title>
<script runat="server" language="VB">
Sub Page_load(sender As Object, e As EventArgs)
timeLabel.text = DateTime.Now.ToString()
End Sub
</script>
</head>
<body>
<p>Hello there!</p>
<p> the time is now: </p>
<asp:Label runat="server" id="timeLabel" /></p>
</body>
</html>
------------------------------------
Then, when I tried to load it through the Web browser (http://localhost/Learning/FirstPage.aspx) and that is when I got the above error. Can someone please help me to figure out what I did wrong? I'm so frustrated with this. I just typed exactly what the book told me to do, and it bomed on me.
Bookmarks