I'm trying to run a simple aspx file using Brinkter as a web server, but I
keep getting an error from machine.config. I failed to fix it. Can you
help? Thanks.
punctual.aspx
<script language="c#" runat="server">
void Page_Load()
{
time.Text = DateTime.Now.Hour.ToString() + ":" +
DateTime.Now.Minute.ToString() + ":" +
DateTime.Now.Second.ToString();
}
</script>
<html>
<head><title>The Punctual Web Server</title></head>
<body>
<h1>Welcome</h1>
In WebServerLand the time is currently:
<asp:label id="time" runat="server" />
</body>
</html>
The error:
Server Error in '/' Application.
---------------------------------------------------------------------------
-----
Configuration Error
Description: An error occurred during the processing of a configuration
file required to service this request. Please review the specific error
details below and modify your configuration file appropriately.
Parser Error Message: The located assembly's manifest definition with
name 'flamm_Kaart' does not match the assembly reference.
Source Error:
Line 324: <add
Line 325: assembly="System.EnterpriseServices,
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
Line 326: <add
Line 327: assembly="*" />
Line 328: </assemblies>
Source File: c:\winnt\microsoft.net\framework\v1.0.3705
\Config\machine.config Line: 326
---------------------------------------------------------------------------
-----
Version Information: Microsoft .NET Framework Version:1.0.3705.0; ASP.NET
Version:1.0.3705.0