Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_beginners thread: Error with a simple aspx


Message #1 by LillyShrager@H... on Wed, 13 Feb 2002 03:02:50
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 


  Return to Index