Tagged Questions

7
votes
4answers
2k views

How to separate model, view and controller in an ASP.NET MVC app into different assemblies

At the moment I am trying to get into the ASP.NET MVC framework. For most of my test applications I used a single assembly/project. This worked fine for some smaller applications. Then I wondered how ...
7
votes
3answers
4k views

WebResource.axd blank or not found

I'm trying to export a control library in a .dll for other developers in the office to consume. The solution I original created looks like this: Solution 1: - Mri.Controls (Class Library) - ...
3
votes
3answers
112 views

Why AppDomain.CurrentDomain.BaseDirectory not contains “bin” in asp.net app?

I have a web project like: namespace Web { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { ...
3
votes
2answers
213 views

Unable to find assembly - imposible to trace error

I have a website which runs in IIS 7.0 in an Integrated v4.0 application pool. Starting from today I get the below exception in the Windows event Log. The website is online for 1 month and I never got ...
2
votes
2answers
132 views

.NET Framework Assemblies in Reflection

I have a collection of assemblies using reflection. I want to loop through them, but I would like to ignore the .NET framework or ASP.NET framework DLL's. Is there an attribute on the assembly that ...
2
votes
1answer
90 views

How to tell ASP.NET MVC to look for controllers in a library?

This must be a trivial question to some, but I haven't found any actual information about this. I have an ASP.NET MVC web application. As I like to write reusable code, I'd like to put my Controllers ...
1
vote
1answer
53 views

Assembly Version Mismatch error

i am running a Web Application which shows assembly mismatch error during loading. I looked into my hard drive and application path to find out the false assembly but i have the right version of ...
1
vote
2answers
66 views

Load two DLLs with different versions

I am developing a project in which I have to create a new feature. Now I am facing a problem that there is a DLL reference in a project with old version and for developing the feature I need a new ...
1
vote
1answer
56 views

How is ASP.NET finding my class library?

I have been asked to update a class library DLL that is being used by an ASP.NET application that someone else created. However, when I looked at the folder structure for the ASP.NET app, I found ...
1
vote
2answers
188 views

Read AssemblyTitle attribute in ASP.NET

I use code below to read AssemblyTitle attribute of .NET apps, unfortunately Assembly.GetEntryAssembly() always return Null in ASP.NET app. How to read AssemblyTitle in ASP.NET app? public ...
1
vote
1answer
99 views

Website alternative to bin folder for assemblies?

In context of an ASP.NET Website project, is it possible to create a second location where DLLs will be picked up from, in addition to the regular bin/ location and apart from the GAC? I expect such ...
1
vote
4answers
471 views

IIS 7 how to load assembly from Bin folder

In .NET solutions I use custom classes for translations. Main idea of translation framework that files with translations are placed in folder near assembly. All work fine when it calles from windows ...
0
votes
4answers
100 views

I am adding dll in web application but that dll cannot access the class names what is the problem?

I am using a dll(NEWDAO.dll) in web application. It has a cs file, I can access that class name in web application but it is not came what is the problem, pls give me any suggestion in NEWDAO name ...
0
votes
3answers
65 views

Adding license file for an assembly in an ASP.Net project

I have an xml license file that needs to be deployed in the same directory as the assembly that references it is located. I had assumed the BIN folder was the correct location. However what is ...
0
votes
1answer
360 views

Entry point not found in assembly

I have a Application where I need to create AppDomain and Load Assembly into it and execute the methods in the Assembly. Here is my Code public class CreateAppDomain { public void ...
0
votes
2answers
224 views

create AppDomain and load Assembly

I want to create a AppDomain with default permissions and load Assembly into the AppDomain with default privileges and execute the methods inside the Assembly. Any Ideas on this are Appreciated. ...
0
votes
1answer
588 views

Add GAC assembly to Visual Studio 2010 'Add Reference' dialog

I realize that my assembly does not have anything to do with being in the GAC for this question but that is how everyone is referencing this. The assembly in question is in the GAC though. So I have ...
0
votes
1answer
143 views

How to reference external assemblies from an ASP.NET web site

I need to reference external assemblies from a dozen asp.net web sites. These assemblies won't be in the GAC, but will be located in a location relative to the web site ("..\..\dlls\release"). From ...
0
votes
3answers
491 views

App.config in Test Projects

I'm building an ASP.NET app in VS2010. I have a number of separate assemblies (class libraries) and corresponding Test projects for each. In one of the class libraries I use an App.config file to ...