Tagged Questions
The app-code tag has no wiki summary.
5
votes
5answers
3k 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 ...
4
votes
4answers
2k views
ASP.NET web site can't see .cs file in App_Code folder
So I have an ASP.NET web site (not web application) I'm making in VS2010 with C#. It runs fine on my machine, but when I upload it to the site it's hosted on, it won't compile, giving: "CS0246: The ...
4
votes
2answers
389 views
Possible to turn off App_Code auto-compile?
Working with Visual Studio (I'm using 2008) I have started to notice that when you save a file in the /App_Code folder, the program will hang for a bit before returning control. After a bit of ...
3
votes
2answers
239 views
Can I have a section of App_Code which compiles separately from the rest of the folder?
We have a website with a huge amount of Cached objects stored in static variables within App_Code. Whenever we push an App_Code change to our production webservers it recycles the IIS pool and flushes ...
3
votes
1answer
648 views
Class in App_Code not accessible by Global.asax.cs
I've created a new class in App_Code
namespace Site {
public class MyClass {
public MyClass() {
}
}
}
this is my Global.asax.cs
namespace Site {
public class Global : ...
3
votes
5answers
6k 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 ...
2
votes
2answers
34 views
AppCode: Turn off automatic matching brace
How do a I turn off AppCode generating a closing brace } whenever I type the opening brace { character?
What I've Tried:
I looked through: Settings --> Code Style --> Objective-C and then selected ...
2
votes
1answer
60 views
reference app_code classes in web application project
I have created an asp.net website, with the accompanying app_code folder.
In the same solution I added a web application project, and I want to use the classes that are in the website app_code ...
2
votes
2answers
88 views
why I can't use code files from app_code in my code asp.net c#
I am working on an asp.net web app, and I have few classes in my app_code, but for some reason I can't use any of them in my code. I tried using the same namespace, I tried without any namespace in ...
2
votes
4answers
807 views
C# asp.net - The type or namespace name 'Helper' could not be found (are you missing a using directive or an assembly reference?)
I'm reworking someone else's code, where they had a helper class with way to much code that shouldn't be there (data access, business logic, everything had slowly been shoved in there).
I've moved ...
2
votes
2answers
253 views
Get Enum List via GetType
Hello everybody
I have code that gives a list of all possible values for any given enum
i bound it pretty often to dropdownlists in my webpages
now im trying to make a usercontrol which accepts the ...
2
votes
5answers
964 views
Clean conflicting class files from Temporary ASP.NET Files
Class file Conflicts in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\ is preventing me from building the solution. Even though I try emptying out the folder, each time Visual ...
2
votes
1answer
825 views
My ASP.NET Web Application cannot 'find' any of my classes in the App_Code folder ..?
I'm trying to make a new asp.net web application .. so I'm copying my files from one site to the new one, in the same solution.
Now, any of my classes in the App_Code directory ... they are not ...
2
votes
3answers
628 views
Class Library Project VS App_Code - Pros / Cons?
I currently use the App_Code folder for all of my classes, and for me (for now) it seems to be working just fine.
I have however been considering making the switch over to a Class Library Project ...
2
votes
1answer
984 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 ...
2
votes
1answer
411 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 ...
2
votes
6answers
7k 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
39 views
How to set property in master page from class in app_code? with asp.net c#
How do I set a property in a master page from a class in app_code? with asp.net c#
my master page:
private int styleGroup;
public int StyleGroup
{
get { return styleGroup; }
set { ...
1
vote
1answer
133 views
Base class includes field but type not compatible with type of control
The base class includes the field 'lbl', but its type (web.App_Code.CustomLabelControl) is not compatible with the type of control (web.App_Code.CustomLabelControl).
I had done many custom controls ...
1
vote
1answer
419 views
App_Code files are ignored (Microsoft Visual Web Developer 2010 error)
I have a 'Connection.cs' file in the App_Code folder of Microsoft Visual Web Developer 2010, but it alerts me of an error:
The type or namespace name
'Connection' could not be found (are
you ...
1
vote
1answer
171 views
TFS Team Build - Build fails if app_code references another project in the solution
I've using Team Build 2010 for some time, and it suddenly stopped working after some changes in the code.
More specifically, when some file in App_Code used a reference from another project in the ...
1
vote
2answers
831 views
apply common namespace from web.config to app_code class file
I am relatively new to asp.net environment.
Recently working on a project, i discovered a problem
i.e. I had to add using system.io to all file functions in any page. same for using sql functions
...
1
vote
5answers
3k views
App_Code folder in ASP.NET project in VIsual Studio 2010
at vs2008 i could set App_Code folder, but at vs2010 i can not do it, that's why i put my dataset's and class' to App_Data folder. Either I do not know even App_Data folder is secure? Any suggestions?
...
1
vote
3answers
349 views
ASP.NET null reference exception
Please help me to figure out what is wrong with this code:
I have ASP.NET page with one button visible.
When user clicks it - it instances MyClass (its implementation is in AppCode directory) and ...
1
vote
2answers
2k views
ASP.NET MVC using App_Code directory
I've added an App_Code directory to my ASP.NET MVC project so that I get dynamic compilation for plugins.
Only slight annoyance is that when developing new plugins, I don't get intellisense on ...
1
vote
2answers
536 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
339 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
2k 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
2answers
81 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?
0
votes
0answers
13 views
Migrate Web Site to Web Application how to handle App_Code
I'm trying to convert an ASP.NET 3.5 Web Site to an ASP.NET 4 Web Application. In the App_Code folder of the Web Site I have a WSDL containing some definitions which are used in a .cs file in the same ...
0
votes
0answers
13 views
webservices files were had asmx.vb movedo to app_code
After I had imported a 1.1 website into a 3.5 solution, all webservices inside that, had those asmx.vb source files moved into App_Code folder. Because of that, my solution start to show a lot of ...
0
votes
3answers
92 views
ASP.Net - App_Data & App_Code folders?
What is the point of having App_code & App_data folders?
Why doesn't my objectDataSource detect classes unless files are in App_Code?
Please provide as much detail as you can, I'm new to ASP.Net
...
0
votes
0answers
45 views
Localization file not called from App_Code folder class
I have a website running asp.net which has a localization file in it's root.
The class that manages the localization is on the App_Code file.
Usually, the site runs fine, but every once in a while, ...
0
votes
2answers
37 views
two problems with Web Site type project (not Web Application)
I have a project which is a Web Site, not Web Application and have two problems because of that.
I have a custom control derived from BaseValidator which I had to put in the App_Code folder. Now on ...
0
votes
4answers
122 views
app_code, modify element on aspx page
Hope this comes out clear enough.
I am new to this all.
I have a asp.net and c# project, in the app_code i have a class userInterface.cs, what i need to do is the folowing:
In that class i ...
0
votes
0answers
11 views
How to update a published webservice class to have a new method?
I need to add a new method to one of my web services. We used VS 2010 to publish it via FTP to the web site (took like 5 hours).
I've tried publishing locally then copying newly complied ...
0
votes
1answer
176 views
ASP.NET C#: How can I call App_code functions inside of web.config
This is the code I use in the web.config:
<add name="MainRule" virtualUrl="^~/Pages/([\w-_]+).html"
rewriteUrlParameter="ExcludeFromClientQueryString"
...
0
votes
2answers
176 views
My ASP.NET App_code changes not getting picked up (or are cached??)
Help!! I have a single .cs file under a (root level) App_Code directory for the purpose of retrieving the correct template for the requested URL (it is linked to our own Content Management database). ...
0
votes
1answer
371 views
MVC Razor Declarative helpers in App_Code does not use web.config namespaces
I have an issue with using declarative helpers in the App_Code directory.
I created a base webviewpage for my views, which has my localization method in it.
I also have a collection of enums to use ...
0
votes
1answer
268 views
Cast ascx within App_Code class
I have an ascx which I want to load and cast from a class sitting within App_Code. I can't get it to work from the App_Code class, although I can get it to work from an aspx page.
The ASPX page ...
0
votes
1answer
117 views
App_Code folder issues
The problem that your classes are not compiled, You'll solve this issue simply by going to the properties of any class in the App_Code folder and change it's 'Build Action' property from "Content" to ...
0
votes
1answer
78 views
Dynamic parameters for attributes
I know parameters to attribute declarations have to be a constant expression and resolved at compile time. However, can I play with the concept of 'compile time'? ASP.net has the concept of App_Code ...
0
votes
2answers
138 views
.Net Build and File Save in App_Code folder
In Visual Studio 2008, when I save a file in the App_Code folder it takes quite a lot longer to save than a similar sized file that is located outside of App_Code folder.
Similarly, when I make ...
0
votes
1answer
79 views
Visual Studio hangs when changes are made to source codes in Asp.Net App_Code folder
My Visual Studio will hang everytime I make some small changes to the Codes in the App_Code folder.
I checked in the folder.. there are about 91 Files in 62 Folders.
Any suggestions on how I can ...
0
votes
0answers
302 views
Using class in App_code - Finding controls on the page that uses that class
Hope this will be understandable. Going to simplify the code alot.
I have a Master page, then i have Default.aspx.
In this Default page i have the following.
<asp:Content ID="Content2" ...
0
votes
1answer
273 views
ASP.NET MVC: files containing extension methods inside App_Code must have Build Action “None”?
This seems to be the only thing that works:
If a .cs file is inside App_Code...
And does not contain extension methods: set the build action to "Compile"; otherwise no other source code in the ...
0
votes
1answer
154 views
Is it possible to add two language code files i.e. C# and VB.NET to App_Code? If so, how I could achieve this?
While adding two language code files i.e. C# and VB.NET to App_Code, got an error
The files ... file names ... use a different language,
which is not allowed since they need to be compiled ...
0
votes
1answer
136 views
Question about moving common routines to the App_Code Class
I have some common code that I would like to share between pages and I have been messing around with App_Code classes which is great but I would also like to use code that affects drop down lists ...
0
votes
2answers
398 views
App_Code duplicate variable in DLLs
I've moved a class to the App_Code folder and I'm now receiving the following error message:
CS0433: The type 'myProject.App_Code.ItemType' exists in both 'c:\WINDOWS\
...
0
votes
1answer
740 views
Global Resources from class in App_Code
I've moved one of my classes to the App_Code folder (and namespace) and inside of this class I have a reference to a global resource:
using Res = myProjectName.App_GlobalResources.Validation;
...