migarting my appliacation from VS 2003 to VS 2005

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
 
J

Jon Skeet [C# MVP]

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
 
K

koolquery

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
 
K

koolquery

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
 
A

Alex Meleta

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
 
J

Jon Skeet [C# MVP]

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...
 
F

Family Tree Mike

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top