1
vote
0answers
56 views

Putting classes in different folders but calling them under the same name space?

I am using Entity Framework in my web application project and there are going to be a LOT of tables in the proejct cauing a lot of class files having to be made. I want to orginize the class files ...
-1
votes
4answers
103 views

how to use namespaces in asp.net application?

How can I use "public variables" in a same or a different namespace but in a same application? for example: 1st namespace in a BookStore web application namespace BookStore { public partial ...
0
votes
1answer
62 views

ASP.NET, What namespace is used by default?

When I create a new Web Site, the Default.aspx has the @ Page directive automatically set to Inherits="_Default". The codebehind file has public partial class _Default : System.Web.UI.Page but no ...
1
vote
0answers
25 views

ASP.NET can't include MySql namespace in asp-tags NOT CodeBehind

Trying to include MySql namespace: <%@ Import Namespace="MySql.Data" %> But getting an error... Have checked, in References tab there is included required dll. Also , I've included in ...
0
votes
1answer
44 views

How to select xml elements within a namespace?

I'm trying to understand this xslt. What does the below xslt command select exactly? what are "following-sibling", "aic" and "pstyle"? "aic" seems to be a namespace. What xml input the below xslt ...
-4
votes
2answers
157 views

I cannot access class inside same namespace

I am trying to access class inside same namespage but i cannot access instance of class. namespace WebProj.Controller { public class DataLayer { public string ConnString { get; set; } ...
2
votes
2answers
61 views

Does adding extra namespaces slow down a webpage?

Does including a large number of namespaces on a page has any affect on the performance of the page?
1
vote
0answers
47 views

The relationship between namespace and actual files layer

OK, just as the title asked, I currently worked on a asp.net website, I found out that all the aspx and ascx files actually stay in one namespace, however there are different directory hierarchy ...
1
vote
0answers
221 views

The type or namespace '' does not exist in the class or namespace '' error with Web Reference

I have a project that is receiving the "The type or namespace '' does not exist in the class or namespace ''" error. I've seen a lot of solutions here that haven't been able to solve my problem. ...
3
votes
1answer
76 views

“already exists in the namespace” message when creating a class diagram

I am trying to create class diagram in Visual Studio 2010 professional as a part of ASP .NET web application project. When I try to name a class "Customer" and .cs file, I get this message "'Customer' ...
1
vote
1answer
64 views

Controller MVC3 link to Folder/Controller/View

I currently got a problem with the namespaces I added this into my global.asax: routes.MapRoute( "Admin", "Admin/{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = ...
2
votes
3answers
129 views

Why should i include the namespace in each aspx page?

I usually include my namespaces e.g. using myProject.Model; to my .cs files but when i want to iterate an object derived from myProject.Model in my .aspx file i must always include the directive ...
-1
votes
1answer
141 views

Creating seperate assembly for sub namespaces in asp.net application

I am coding a web project that references many assemblies. I want to create a separated assembly for a sub namespace that is in root namespace without creating a different project. But i couldn't ...
1
vote
3answers
2k views

The type or namespace name 'OracleConnection' could not be found

I am getting this error every time I try to debug my program: CS0246: The type or namespace name 'OracleConnection' could not be found (are you missing a using directive or an assembly ...
0
votes
1answer
123 views

Strange behaviour in namespace

Recently noticed a strange thing in my solutions. I always leave the root namespace empty in my projects. Then, I write all as normal including namespaces on the inherits directives of pages and using ...
0
votes
1answer
160 views

Using reflection to get namespace from ASP.NET template code-behind class?

I'm trying to get the namespace from ASP.NET template (.aspx) code-behind class. The code-behind file contains something like: namespace MyTopNamespace.SubNamespace { public partial class ...
0
votes
1answer
114 views

ASP.NET MVC Custom User class is clashing with System.Security.Principal.iPrinciapl

Hey guys I declared my own class User, and when I want to use it, I Include it's namesapce MyProj.Models; But The System.Web.Security.Principal.iPrinciapl (Controller.User) is getting in the way and ...
0
votes
3answers
163 views

Same class name in same namespace

I'm working on a web-project and I was asked to move some files from a project to another project, but both of the projects are in the same solution. So I migrate File1 from project A to project B. ...
1
vote
3answers
2k views

The type or namespace name 'CrystalReportViewer' does not exist in the namespace 'CrystalDecisions.Web' (are you missing an assembly reference?)

m getting the following error on using crystal report in my asp.net 3.5 a3-tier application the type or namespace name 'CrystalReportViewer' does not exist in the namespace 'CrystalDecisions.Web' ...
0
votes
1answer
76 views

Return a UserControl from a method that is not in the Code-Behind file.

I want to create a helper method that could be called from different code-behind files. This method would return a UserControl (myUC). However I do not see any way of accessing myUC except by ...
0
votes
0answers
192 views

Unable to reference TableAdapter or DataSet in ASP.net and C#

I've got a ASP.NET C# Website on .NET 4.0, and I'm going a bit crazy! I cannot reference the newly created DataSet, TableAdapter, or the strongly typed classes in my code. I've written a second ...
0
votes
1answer
134 views

System.windows.media Assembley

How can i add assembly for System.windows.media to site who configure to asp.net 3.5.. I got the error: Compiler Error Message: CS0234: The type or namespace name 'Media' does not exist in the ...
0
votes
1answer
89 views

Need help organizing my C# namespaces and client-specific customizations for an asp.net site [closed]

I am somewhat new to ASP.NET (working in it less than a year). My background is mainly in Coldfusion, but after starting my new job almost a year ago I was asked to create an e-commerce site for a ...
0
votes
1answer
584 views

How to specify a namespace for an ASP.net UserControl?

i have a UserControl in ASP.net: VacationSelector.ascx.cs: ... public partial class VacationSelector : System.Web.UI.UserControl { ... i want to wrap this class in a namespace: ...
0
votes
0answers
197 views

Run a custom Namespace ASP.Net

I'm using the following Session Timeout function as here http://aspalliance.com/1621_Implementing_a_Session_Timeout_Page_in_ASPNET.2 My only problem is, my master page has other content in it, so I ...
-1
votes
1answer
71 views

vb.net predicate wrapper error

So I have a some code I've been using for quite a while and it has worked fine. This project is rather large so I'm using a detailed namespace and I can't get it to work. I've used this a hundred ...
0
votes
2answers
115 views

ASP.NET System.Anything is not defined

I ran Debugging and got a ton of "is not defined" errors in all the namespaces under System. The System and System.Web references are in the References folder. Trying to back track the things I've ...
2
votes
2answers
221 views

What is the advantage of adding namespace in web.config file?

What is the advantage of adding namespace in web.config file? <configuration> <system.web> <pages> <namespaces> <add ...
1
vote
2answers
257 views

Namespace alias in web.config not recognised by Resharper

In my ASP.NET WebApplication I have the following entry in my web.config: <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="Static"> <namespaces> <add ...
1
vote
0answers
562 views

Remove server tag from http response header

I am trying to remove server tag from http response headers in asp.net(C#) With the help of stack overflow, I succeeded to create .dll file and added its reference in my project but still the server ...
1
vote
1answer
237 views

Why can't the type or namespace be found on IIS 7 server when it works fine on the local machine?

I am using DynamicPDF creator, Visual Studio 2010, and IIS 7. On my local machine, the line "using ceTe.DynamicPDF;" and subsequent lines work fine, but when I try to load the page on my server, I ...
0
votes
1answer
313 views

asp.net 3.5 namespace of website?

im working on a asp.net 3.5 app. i am trying to reference a public class in another class, but the IDE can't find it. In .net 4.0 you can set the namespace of the website. i think i just need to add ...
0
votes
1answer
85 views

Check namespace

I recently added a class I created with a tool to my Visual Studio 2010 project but I can't call it in my codebehind file. I was told I need to check the namespace. How do I check and control a ...
1
vote
0answers
365 views

Web reference call return object with null fields

I know this is a repeated problem. But I've Googled in the last 2 days, but still can not find the solution to my issue. The popular answer is namespace related but it still does not help me. Ok, so ...
0
votes
1answer
225 views

Why does surrounding my class with a namespace cause all other classes to stop compiling?

I have a large web app in vb.net 4.0. Its default namespace is configured in its project properties. None of the root-level classes in our app are surrounded by namespace declarations. When I add a ...
2
votes
1answer
3k views

ajaxtoolkit:CalendarExtender working on one asp.net webpage but not on others from same site

first post hopefully you can all help me. Basically I have registered an ajax web toolkit Calendar Extender in the config file and registered it for one of my asp.net web pages as follows: Web Config ...
0
votes
1answer
235 views

Runtime CS0234 Error accessing SOAP Web Service in VS2010 Web Application

I have an ASP.NET 4 web application that references a SOAP web service. I have an (old fashioned) Web Reference to this web service in my project. When I compile/build in the IDE I get no problems ...
0
votes
2answers
165 views

Type or Name Space error when using ImageGen

I am using ImageGen for displaying images , I have added the ImageGen.ashx and added the config file of ImageGen plus added some settings on webconfig : <configSections> <section ...
0
votes
2answers
442 views

When Building an N-Tier application, how should I organize my names spaces?

So when I started trying to build my websites in an n-tier architecture, I was worried about performance. One of the guys who answered the question told me if you applied a good architecture you'd ...
1
vote
1answer
90 views

Inject method to codebehind from aspx page

I have an aspx page belonging to a legacy application. Since I cannot access to the relative aspx.cs file, I have to inject some needed logic through the aspx file, like: <% using ...
1
vote
3answers
585 views

How is the auto-generated ASP namespace realized for an ASP.NET website project, from start (build) to finish (runtime)?

The 'ASP' namespace seems to be a generated because it's not used in the website project's source code, anywhere (or at least not explicitly used by the programmer of the website). I would like to ...
0
votes
2answers
246 views

Add new namespace to all newly created pages in asp.net with c#

I have required System.Text.RegularExpressions namespace to all my pages on my webproject.so want to add this namespace by default when new page is created on my project.so what i do for this.
0
votes
1answer
151 views

compiler doesn't recognize the dataset (I added using the wizard or the .xsd files)

I created a DataSet object and DataLayer.cs class in root directory. In the DataLayer class I am using System.Data. But the compiler does not recognize my DataSet. The error asks me if I am missing a ...
3
votes
5answers
306 views

Cannot Parse .aspx during WAP Conversion

I've copied over the Web Site files to a new WAP project. Made sure that it compiles and it does. The problem I have is that it can't parse the .aspx pages when I perform a convert to WAP. The ...
1
vote
1answer
306 views

Should ASPX code-behind be within a namespace?

Something like this: Namespace Test_NS Partial Class Test_WebSite Inherits System.Web.UI.Page End Class End Namespace Or should I leave it alone and only keep the classes in my ...
0
votes
1answer
397 views

Creating a customized namespace in C# asp.net

To preface, I need to say that I am still in the learning stagings of asp.net I need to create a custom namespace where I can place my DataObject.cs file The namespace is .Components.Data How do ...
3
votes
2answers
605 views

How to access a function within a namespace

Please I am facing a problem while accessing a function within a class inside a namespace in C#. The format that i know is as follows: namespace.classname.functionname(); However, the above method ...
0
votes
1answer
293 views

using Directive to SqlHelper is not working in VS2008

I used visual studio 2005, in that I have created a class and created namespace for that. And in aspx.cs I am writing in above class using sqlhelper; it works. But I am getting an error in 2008 when I ...
0
votes
1answer
271 views

ASP WebReference namespace could not be found

I've added a WebReference to my project - when I try to reference it, it says the namespace could not be found. I know the syntax is right, but I think there is something I need to do to include it in ...
1
vote
2answers
116 views

Namespace not found in deployed site; works locally

My hosted website is not working, and is giving an error. **The name 'General' does not exist in the current context** Line 19: if (passedArgument == "true") Line 20: { Line 21: ...

1 2 3