migarting my appliacation from VS 2003 to VS 2005

  • Thread starter Thread starter koolquery
  • Start date Start date
K

koolquery

Hi i;m
migarting my appliacation from VS 2003 to VS 2005
I've coverted it but now i'm getting the error
"Error 1 The type or namespace name 'EncriptDecript' could
not be
found (are you missing a using directive or an assembly
reference?) C:
\Inetpub\wwwroot\ \Login.aspx.cs 14
"
How to rectify it ?

Thanks in advance
 
migarting my appliacation from VS 2003 to VS 2005
I've coverted it but now i'm getting the error
"Error 1 The type or namespace name 'EncriptDecript' could
not be
found (are you missing a using directive or an assembly
reference?) C:
\Inetpub\wwwroot\ \Login.aspx.cs 14
"
How to rectify it ?

1) Work out where the type or namespace is meant to come from
2) Make sure you've referenced that assembly
 
1) Work out where the type or namespace is meant to come from
2) Make sure you've referenced that assembly

using EncriptDecript.Encript;
this is giving the error and i'm not getting this namespace or where
we can get this DLL
 
Hi (e-mail address removed),

Check that References are the same for both the projects. It seems like you
lost one(s) for some reason during convertion.

Regards, Alex
[TechBlog]http://devkids.blogspot.com
Hi i;m
migarting my appliacation from VS 2003 to VS 2005
I've coverted it but now i'm getting the error
"Error 1 The type or namespace name 'EncriptDecript' could
not be
found (are you missing a using directive or an assembly
reference?) C:
\Inetpub\wwwroot\ \Login.aspx.cs 14
"
How to rectify it ?
Thanks in advance

using EncriptDecript.Encript;
this is giving the error and i'm not getting this namespace or where
we can get this DLL
 
Hi (e-mail address removed),

Using the Object Browser track what is the module is responsible for it.
It's not a .NET common assembly, then there should be the link somewhere
in project. Check reference or gac or such to find lost assembly in 2003
project. Then refer it in the new one. There is high possibility that lost
reference link to an assembly or a project in solutiuon cause this exception.

Regards, Alex
[TechBlog] http://devkids.blogspot.com
Hi (e-mail address removed),

Check that References are the same for both the projects. It seems
like you lost one(s) for some reason during convertion.

Regards, Alex
[TechBlog]http://devkids.blogspot.com
Hi i;m
migarting my appliacation from VS 2003 to VS 2005
I've coverted it but now i'm getting the error
"Error 1 The type or namespace name 'EncriptDecript' could
not be
found (are you missing a using directive or an assembly
reference?) C:
\Inetpub\wwwroot\ \Login.aspx.cs 14
"
How to rectify it ?
Thanks in advance
using EncriptDecript.Encript;
this is giving the error and i'm not getting this namespace or where
we can get this DLL
 
using EncriptDecript.Encript;
this is giving the error and i'm not getting this namespace or where
we can get this DLL

Well if it was building in VS2003, you must have had it back then...
 
Hi i;m
migarting my appliacation from VS 2003 to VS 2005
I've coverted it but now i'm getting the error
"Error 1 The type or namespace name 'EncriptDecript' could
not be
found (are you missing a using directive or an assembly
reference?) C:
\Inetpub\wwwroot\ \Login.aspx.cs 14
"
How to rectify it ?

Thanks in advance

Are you sure on the spelling? EncryptDecrypt comes up in google.
 
Back
Top