Microsoft.VisualBasic.Compatibility Error

TheWizardofInt

Well-known member
Joined
Dec 31, 1969
Messages
333
Location
Orlando, FL
This .dll works on my Win2k development PC, but not on my Win2K web server. Originally, it was compiled in .Net 1.0, but it has been rebuilt in the latest version. The only difference between the two servers is that the Web Server doesnt allow outgoing Internet connectivity

Code:
File or assembly name Microsoft.VisualBasic.Compatibility, or one of its dependencies, was not found. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.IO.FileNotFoundException: File or assembly name Microsoft.VisualBasic.Compatibility, or one of its dependencies, was not found.

Source Error: 


Line 356:                Session("Login") = RTrim(UCase(txtEmail.Text))
Line 357:                update the string
Line 358:                objContact = GMApps.PrepareContact

 
[/code
 
Microsoft.VisualBasic.Compatibility is installed with Visual Studio .NET and must be redistributed manually if you do choose to use it. It is not part of the .NET Framework Runtime Redistributable, meaning that your server probably doesnt have it installed (thank God; keep it that way).
 
Back
Top