I recently designed an ASP.NET project through visual studio 2010. It connected to a MySql server running on an ec2 instance from amazon.com
When I ran the application on my local machine, it worked perfect.
However, I used the ASP.NET publish option to put my project onto my windows 2008 server also trough amazon ec2.
After publishing, I can get to my project, but anytime I try to access the db, it thros an exception:
Could not load file or assembly 'MySql.Data, Version=6.3.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. The system cannot find the file specified.
I made sure I had the most current connectors installed on my sever. Am I missing DLLs or do I need something in my web.config?
I am a new web developer, any help is appreciated.
When I ran the application on my local machine, it worked perfect.
However, I used the ASP.NET publish option to put my project onto my windows 2008 server also trough amazon ec2.
After publishing, I can get to my project, but anytime I try to access the db, it thros an exception:
Could not load file or assembly 'MySql.Data, Version=6.3.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d' or one of its dependencies. The system cannot find the file specified.
I made sure I had the most current connectors installed on my sever. Am I missing DLLs or do I need something in my web.config?
I am a new web developer, any help is appreciated.