ASP.NET help

rubdos

New Member
Messages
2
Reaction score
0
Points
0
Hi!

I'm devlopping an application in Visual Studio 2008 in ASP.NET (C#). On my computer (ISS) it works fine. But when I upload it, I get following error:

Apache said:
Server Error in '/nl8' Application

System.Data.dll

Description: HTTP 500. Error processing request.
Stack Trace:
System.DllNotFoundException: System.Data.dll
at (wrapper managed-to-native) Bid/NativeMethods:DllBidInitialize ()
at Bid.initEntryPoint () [0x00000]
at Bid+AutoInit..ctor () [0x00000]
at Bid.internalInitialize () [0x00000]
at Bid..cctor () [0x00000] Version information: Mono Version: 2.0.50727.1433; ASP.NET Version: 2.0.50727.1433

Sometimes it looks like I get a random error ?!

Anyone knows how I can solve it?

My url: www.twosman.co.cc/nl8.
In my root isn't anything but some folders and the _vti_info file

Rubdos
 
Last edited:

Submariner

New Member
Messages
44
Reaction score
1
Points
0
This site uses Mono to simulate the Windows stuff. You are actually running on a UNIX box, specificly Linux. It would be best to use C or C++ to write binaries for the OS it is being run on or use a scripting language like PHP that isn't specific to the OS being run on.

If you really want to stick to ASP.NET devlopment for a Linux box read up on MONO and understand what routines of ASP.NET have not been converted so you don't end up trying to call them.
 

rubdos

New Member
Messages
2
Reaction score
0
Points
0
Ok, thanks, I gonna see what I'm doing wrong.

But, anyone has already an idea, what's wrong?
 
Top