Tagged Questions

2
votes
1answer
183 views

Does App_Code in ASP.Net compile new code to a secondary temp AppDomain?

I am trying to better understand how the App-Code folder operates, and in particular I am curious how new objects that a new class in the App-Code folder are included in the current AppDomain. Is a …
1
vote
1answer
131 views

Page class outside of App_Code will not compile

I have a website that has 2 files as follows: page.aspx page.aspx.cs It used to be that I could just drop new files onto the web server and IIS would automatically compile the files and I could …
1
vote
1answer
50 views

Accessing asp.net Profiles from App_Code

I am creating a base class from which specific pages are going to be derived. That is, instead of inheriting my pages from System.Web.UI.Page, they're inheriting from MyPage (which in turn, inherits …
1
vote
2answers
73 views

Linq-to-SQL datacontext not generating an object

I am working in a .NET 2.0, recently upgraded to .NET 3.5 environment (VS2008, VB.NET) on an existing ASP.NET website project. I am able to generate a Linq-to-SQL Class (also called a DataContext?) in …
1
vote
3answers
449 views

ASP.NET - How do you reference a class that is not in app_code

I have created a MasterPage called MyMasterPage. public partial class MyMasterPage : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { } } I have also …
1
vote
5answers
2k views

Cannot add App_Code folder to WebSite project

Using VS2008, I am trying to add an App_Code folder from add-->folder-->Add ASP_NET folder. The App_Code folder option is there as expected BUT ... it's disabled!? I am pretty sure I am working with …
1
vote
2answers
71 views

Creating Web Services in VS 2005

Why is that Web Service files (.asmx) have their code-behind placed in app_code folder by default unlike the regular .aspx files?
1
vote
3answers
1k views

How come classes in subfolders in my App_Code folder are not being found correctly?

I am getting the following error when I put class files in subfolders of my App_Code folder: errorCS0246: The type or namespace name 'MyClassName' could not be found (are you missing a using …
1
vote
3answers
811 views

App_Code folder issues

So I'm having a really weird issue with my App_Code folder on a new website I'm designing. I have a basic class inside of a namespace in the App_Code folder. Everything works fine in the IDE when …
0
votes
1answer
33 views

ASP.NET : App_Code Class files not getting updated after modification

I have an ASP.NET web site where i am having App_code folder in which i put my class files (Business objects). Its running fine.But when i made some changes in the class (Added few proprties /Methods) …
0
votes
1answer
21 views

Can you move (or duplicate) the “special” .Net folders (App_*) in a subdirectory?

It is possible to have extra .Net "special" folders (App_Code, App_Themes, etc.) inside of a subdirectory, rather than in the root? I am integrating with a CMS that dumps an enormous amount of stuff …
0
votes
4answers
215 views

Where should I place additional classes in my MVC application

I have an ASP.NET MVC application which is using Linq to SQL classes placed in the Model folder. I want to create some extra classes that I would normally place in my BLL but I'm not sure how to work …
0
votes
1answer
96 views

Why do custom membership provider files have to be in the app_code folder of my web app?

I'm writing a custom memberhsip provider based on the source for the SQL provider and I tried first making the SQL Provider a separate project. Yet, the web app wouldn't recognize it unless I put all …
0
votes
6answers
800 views

App_Code and web.config

Let's say I have a class (MyClass.cs) in App_Code (using a ASP.NET web site, not project). There's no namespace assigned to the class. How can I get that class to be valid in the web site .aspx …
0
votes
1answer
683 views

asp.net web sites and default namespaces and LINQ Datacontext part 2

Let me try to ask this question from a different angle. I noticed that everytime an aspx page gets rendered in the browser using the "web site" model, a random assembly gets created 'on-the-fly' in …

1 2 next
15 30 50 per page