How to deal with "The connection name 'OraAspNetConString' was not found in the applications"?

Programming, error messages and sample code > ASP.NET
Parser Error Message: The connection name 'OraAspNetConString' was not  found in the applications configuration or the connection string is empty.
 
Why?
 
What happens when you install the Oracle .NET package on any of your machines is it installs a ton of different providers into your machine.config along with the OraAspNetConString as a machine-level connectionString. The <clear/> element gets rid of that OraAspNetConString and thanks to Oracle's machine.config additions all of the other Oracle providers loaded by default are crashing when they can't find the connectionString.
 
01. <connectionStrings>
02.     <clear />
03.     <add name="OraAspNetConString" connectionString=" "/>    
04. </connectionStrings>