TheWizardofInt Posted July 1, 2003 Posted July 1, 2003 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 doesn't allow outgoing Internet connectivity 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 Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
Moderators Robby Posted July 1, 2003 Moderators Posted July 1, 2003 Also change to some new methods... Session("Login") = txtEmail.ToUpper.Trim Quote Visit...Bassic Software
*Gurus* Derek Stone Posted July 2, 2003 *Gurus* Posted July 2, 2003 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 doesn't have it installed (thank God; keep it that way). Quote Posting Guidelines
TheWizardofInt Posted July 2, 2003 Author Posted July 2, 2003 So how do I not use it? The error won't clear and keeps me from running the .dll I need for this site to run? Quote Read the Fovean Chronicles Because you just can't spend your whole day programming!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.