Configuration :: CS0103 Error When Calling Class Contained In App_Code Folder

Nov 18, 2010

I have created a simple ASP.NET Website in Visual Studio 2008. I have a static C# class (lets call it someClass) contained in a separate file in the App_Code folder. I call a method from that class in my page's code behind like so:

someVar = someClass.someMethod(someParam);

This compiles correctly in VS 2008 but when I move it over to my IIS server, I get the following error (CS0103): Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0103: The name 'someClass' does not exist in the current context I have created a virtual directory for this website enabling 'Read', 'Run scripts (such ASP)', and 'Execute (such as ISAPI applications or CGI)'. I am not currently utilizing namespaces (as I thought I would not need to and I'm not sure how to use them properly). What am I doing wrong?

View 1 Replies


Similar Messages:

CodeBehind Class Not Accessible To Code In App_Code Folder?

Jan 31, 2010

I have a PlannerShiftView user control in the root folder of my ASP.NET web site. In my App_Code folder, I have a ShiftViewTemplate class that needs to instantiate a PlannerShiftView (for a TemplateField in a GridView). The problem is, the following code doesn't compile because the PlannerShiftView type is not available in what I deem to be the App_Code 'phantom namespace'.

Please can somebody explain to be what is happening here, as well as what to do. I know I can just move the ShiftViewTemplate out of App_Code, going against convention and without explantion, but that is something of a hollow victory.

View 1 Replies

Get Page Title Inside Class In App_Code Folder

May 5, 2010

I guess I might be missing something easy (or not) here. I have a class in App_Code which do some validations over Session and Request.Url, till here it's working fine. But then I need to get the actual page title. I know it's simple to get it in the page's code behind, but could I get it in a separate class like it is on my scenario?

View 8 Replies

Architecture :: Access Class Files Not In App_Code Folder

Feb 25, 2010

I have a single project. and I have two folder in it. In the 1st folder I have a class named Class1 and in the 2nd folder I have a class named Class2. Can anyone tell me how I can access members of Class1 in Class2. I have tried by adding namespace in Class1 and Using that namespace in Class2. But it is giving error. It is easy to access classes or their members from App_Code folder. I don't want to put my classes in app_code folder.

View 3 Replies

State Management :: How To Use ViewState In Class Inside(App_code) Folder

Aug 23, 2010

i want to do some thing like this in in Class inside(App_code) folder i want to know how to do it with

Correct Syntax :
public static void GetViewStateValue(int StudentID,ViewState MyViewState)
{
if(MyViewState["Name"]!=null)
{
}
}

View 7 Replies

Localization :: Access Resource String From Class In App_Code Folder?

Mar 8, 2011

Or any class that's not X.aspx.vb. I've imported the Globalization, Threading, Threading.Thread, and UI.Page namespaces. But it won't come up in Intellisense and it gives error lines in my code. Is there a way to access use the GetLocalResource("Y") method in other classes?

View 3 Replies

Configuration :: Custom Class Inside App_code After Published?

Apr 6, 2010

I have some problem in app_code. I created one class name as class1 in side app_code.... Now I have a grid view with lots of textboxes inside it(itemtemplete). I call class1 to fill the all the values in my database with get set properties..... it working awesome on local. but problem is that after published it is not working.... I mean class1 is not called after publishing.... And app_code folder also not appearing at published folder.

View 5 Replies

Configuration :: Slow Load Time After Updating Class In App_Code?

Dec 20, 2010

We have an asp.net website running on IIS 6 Windows 2003. When ever we upload a class file to the App_Code folder our whole site goes down temporarily until, what I assume, compilation is complete. Has anyone else experienced this? Any other file we upload it does not do this only our class files.

View 1 Replies

Class In App_Code Not Accessible By Global.asax.cs Error - Namespace Name 'MyClass' Could Not Be Found

Nov 18, 2010

I've created a new class in App_Code

namespace Site {
public class MyClass {
public MyClass() {
}
}
}

this is my Global.asax.cs

[code]....

The error is in: MyClass myClass = new MyClass();

The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?)

View 1 Replies

Error Calling A Class File & Namespace?

Feb 1, 2010

i have the same prblmi have a class file in app_code/fol1/fol2/class1.vbbut when i call it as dim x as new class1 i am not getting itshld the class file be placed in app_code folder or outsideactually i had creatd the namespace but i am not able to import i

View 8 Replies

List All Classes In Application (Including Class In App_Code And Partial Class(aspx Pages And Asmx User Controls)?

Nov 15, 2010

Is there any way to list all the class in my ASP.Net application(Including class in App_Code and Partial Class(aspx pages and asmx user controls)

View 3 Replies

Web Forms :: Calling Class Method Showing Compilation Error

Apr 19, 2014

How to pass parameter while calling a class file in aspx.cs...my class file,

public ExifMetaInfo(Uri imageUri)
{
BitmapFrame bFrame = BitmapFrame.Create(imageUri, BitmapCreateOptions.DelayCreation, BitmapCacheOption.None);
_metaInfo = (BitmapMetadata)bFrame.Metadata;
}
 
I am calling this in my aspx.cx as,

protected void Page_Load(object sender, EventArgs e)
{
WPFExifInfo.ExifMetaInfo classfile = new WPFExifInfo.ExifMetaInfo(Uri imageuri);
}
 
here showing error in (Uri imageuri);

View 1 Replies

C# - Accessing Contained Class Properties In Gridviews Boundfield?

Sep 15, 2010

I wonder why asp.net wont allow accessing property of contained class on Gridview's Boundfields while it work in ItemTemplates..

Class User
{
Diagnosis diagnosis { get; set; } // Contained class
}
Class Diagnosis
{
string DiagnosisCode { get; set; }
}
gridview.datasource =
new List<User>() {
new User() {
diagnosis = new Diagnosis() { DiagnosisCode = "MALARIA" }} }
<boundfield datafield='<#% User.diagnosis.DiagnosisCode %>' />

View 1 Replies

App_code Folder In 3.5?

May 22, 2010

Can any one explain me about App_code folder? AND i want to put some .cs files in that folder. But i coud not see the folder. HOw to add?

View 4 Replies

Why Use App_code Folder

Nov 18, 2010

any one explain me why use classes inside app_code folder or which file add inside this folder and what is the logic of that file and how they work?

View 3 Replies

App_Code Folder Get Ignored By Compiler?

Oct 5, 2010

I've noticed that with some, but not all sites, if I add a class in a .cs file in the App_Code folder, then I can't reference the class anywhere. In some sites, this isn't a problem. If I move the .cs file to the root, then no problem. Anyone able to explain what's going on here? I have a mixture of sites created in VS2010, along with ones that existed before I got it. Don't know if this makes any difference. More to the point, how do I persuade VS2010 (and I suppose IIS ultimately) to allow .cs files in App_Code, as I find this much neater than having class files littered around the root.

View 6 Replies

App_Code Folder Does Not Work?

Jul 28, 2010

I have a question. When I create my website using vwd 2008 express, I can not create App_Code folder, actually there's no selection for App_Code folder when I right click on my website(only Theme, App_Resources, App_LocalResources, App_GlobalResources and disabled App_Data).

I try to add new folder and name it App_Code, then put a class in there. But I can reference to it in my code behind.

Is there something wrong with my VWD installment or this is not supported by Express version?

View 3 Replies

Configuration :: Calling Dll With Gives HTTP 503 Error On Production Server?

Jan 11, 2011

We have had some problems with using a unmanaged DLL file written in Delphi. (Unable to load dll - not found...)The following code solved the problem on my local machine:

[Code]....

1) The elusive DLL is copied to the ASP.NET temporary files folder2) To check this we get a list of files from that folder.3) The needed function is called with DLL-import.1 & 2 works perfectly - both run directly from Visual Studio 2010 and when uploaded to a webhotel3 works perfectly local, but causes the remote host to think a little and then return a HTTP 503 Service Unaviable error for the next few minutes...

View 1 Replies

MVC :: Razor And ResolveUrl / Getting Error CS0103

Aug 22, 2010

I have the following:

[Code]....

And I am trying to do the same with Razor:

[Code]....

But I keep having the error:

Compiler Error Message:

CS0103: The name 'ResolveUrl' does not exist in the current context

What am I doing wrong?

View 6 Replies

App_Code Folder Is Missing In VS 2010

Feb 17, 2010

I was trying to create a Dynamic Data Website using VS 2010 RC. An attempt to create an App_Code folder where I would put a LINQ to SQL class, failed. When I selected 'Add ASP.NET Folder' to add the folder, I had options to create only the following folders:

App_GlobalResources
App_LocalResources
App_Data
App_Browsers
Theme

What happened to the App_Code folder?

View 3 Replies

App_Code Folder Of Project Contain Both C# And VB# Classes?

Sep 17, 2010

Using vb.net/asp.net 2005. I have a project that is done with all vb.net, however I want to get some more experience with C#.Net. I am considering creating a new database class to put in the app_code folder.

View 3 Replies

What Is The Best Way To Separate Classes Under The App_Code Folder

Aug 10, 2010

I have an application which contains different modules from different databases, for instance, I have a table called "ITEMS" in each database. When I create the classes for the table ITEMS I wonder how I can differentiate among them.

For instance, for now, I have "ItemDetails.cs" under App_Code folder BUT I need to create another "ItemDetails.cs" class which will reference the table ITEMS from a different database. If I create folder under the App_code the class name still remains the same.

I could add an acronym in front the class to differentiate which database I am working from but that makes the class name too long.

View 2 Replies

Web Forms :: Get A Error CS0103 For Every Item On The Page ?

Dec 22, 2010

This error is baffling me. My webpage was working fine up until I added a label for testing to the page. Now when I try to debug the page, I get a error CS0103 for every item on my page that I try to reference in my "behind" code.

The .aspx page:

[Code]....

My errors are as follows:Error 1 An object reference is required for the non-static field, method, or property 'System.Web.UI.Control.Visible.get' 23 5 TRX-Support
Error 2 The name 'LoginRoundPanel' does not exist in the current context 24 5 TRX-Support

I have tried deleting the designer and convering the page back to a web application, and this didn't help. I'm fairly new to ASP.NET & C#

View 1 Replies

Unable To Debug Code In App_Code Folder?

Feb 12, 2010

I appear to have hit a brick wall whilst attempting to debug some C# code that resides in the App_Code folder.We have an established ASP.NET solution and I've just been brought onto the team. Unfortunately when I run the code [which successfully debugs (to a certain extent)] it does not step into a *.cs file that exists in the App_Code folder.I've found several posts on the subject, none of which seem relevant to me.

Specifically:

Running Win7 Enterprise 32 bit VS2005 8.0.50727.867 (vsvista.050727-8600) http://forums.asp.net/p/958358/3675792.aspx#3675792 mentioned removing the "+optimize" in the web.config file; this doesn't seem to be relevant to me (<compiler language="c#;cs;csharp" extension=".cs" compilerOptions="/d:TRACE"
type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>)
The "App_Code" folder doesn't seem to have any peculiar setting associated with it

I also said that debugging works successfully "to a certain extent". I've set up Visual Studio with the C# developer environment. When I hit F11 I would expect the IDE to begin debugging and for the execution point to stop on the very first line of code (this is what it does in all my other projects in VS2003 & VS2008). However, when I hit F11 it acts like F5, running until it either hits a break point or a run-time error. I'm wondering whether this may be related to it not even hitting break-points in code in my App_Code folder?

View 2 Replies

Configuration :: File Not Found - Error Message When Calling Aspx Files?

Apr 15, 2010

I've just setup a new site on my IIS6 and I'm experiencing the following problem:

I can run normal HTML pages, but no .aspx files. If I call the aspx page directly I get a 404 - file not found - error message. This only happens with .aspx files.

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved