vote up 0 vote down star

Hi all.

I'm working on a project that depends on third party controls. While opening website after installation, I've an error message regarding these controls,

     Could not load file or assembly. assembly_file_name. 
The system cannot find the file specified.

web.config file, has an assembly tag for each dll. When I remove these tags, website is loaded successfully, but while opening any of pages that contains any of these control, I've that error

Unknown server tag. tag_name.

So I need to register that dll in GAC while installation?

flag

53% accept rate

1 Answer

vote up 0 vote down check

Either put the assembly in the GAC, or deploy that DLL in the bin\ directory of your ASP.NET application.

You can deploy to the GAC with an MSI, or you can use the gacutil utility (it comes with the .NET SDK, but not the redistributable framework itself).

If the DLL is in the bin directory but is not being found, check here for some suggestions.

link|flag
DLLs of these controls already exist in bin folder of website. – Ahmed Apr 7 at 14:41
OK, check the second link then. – crb Apr 7 at 14:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.