vote up 0 vote down star

Hi there,

Is there a reason why i can't reference any assemblies from my master page or views?

So for example in my controler classes I can go MyRootnamespace.OtherAssembly.ClassName but when I do this in my view like:
<% MyRootnamespace.OtherAssembly.ClassName %>

it says OtherAssembly does not belong to MyRootnamespace

flag

3 Answers

vote up 1 vote down

Try adding the line

<add namespace="MyApp.MyNamespace"/>

to the namespaces section of your web.config.

link|flag
Tried and recompiled, didn't work :( – Michael Jul 9 at 6:05
If you namespace is correct, It doesn't require recompile project or solution. Because IIS detect & restart application automatically when web.config file is changed. – Soul_Master Jul 9 at 6:11
vote up 0 vote down

Before using new namespace in Asp.net Mvc page like master page, view page. Please add namespace(s) that you want to use to web.config file.

<configuration>
    <system.web>
        <pages>
            <namespaces>
                <add namespace="[Your Namespace]" />
            </namespaces>
        </pages>
    </system.web>  
</configuration>
link|flag
vote up 0 vote down

You should probably register the assembly as in a Webform, like on http://support.microsoft.com/kb/321749

<%@ Register Assembly= "MyRootnamespace.OtherAssembly" %>
link|flag

Your Answer

Get an OpenID
or

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