I created a namespace consisting of two cs files (uSqlREBrokers.cs and uSqlREProperties.cs). This namespace references another namespace. The compile command line I used to create the namespace or the dll file ( uSqlRE.dll) is
csc /target:library /out:uSqlRE.dll /R:yJCore.DLL uSqlREBrokers.cs uSqlREProperties.cs
I now have an aspx file (loginnew03.aspx) which inherits from a code behind file (loginnew03.cs).
The code behind file has this statement
using uSqlRe;
When I load loginnew03.aspx into internet explorer, i get the following compilation error
CS0246: The type or namespace name 'uSqlRE' could not be found (are you missing a using directive or an assembly reference?)
What should I do to correct this
csc /target:library /out:uSqlRE.dll /R:yJCore.DLL uSqlREBrokers.cs uSqlREProperties.cs
I now have an aspx file (loginnew03.aspx) which inherits from a code behind file (loginnew03.cs).
The code behind file has this statement
using uSqlRe;
When I load loginnew03.aspx into internet explorer, i get the following compilation error
CS0246: The type or namespace name 'uSqlRE' could not be found (are you missing a using directive or an assembly reference?)
What should I do to correct this