Questions tagged [web-application-project]

A Visual Studio project type which compiles all codebehind into a single assembly. Created through the File->New Project or Project->Add Project commands. This is the original project type for web applications, introduced along with .NET 1.0 and Visual Studio.NET in 2002. Not to be confused with a web site project, created by File->New Web Site or Project->Add Web Site commands.

256 questions
2
votes
2 answers

Can't access instance of custom inherited webcontrol from code-behind page in Web Application project

I've inherited from an ASP.NET WebControl to add some additional functionality. I tested my control in a blank ASP.NET Web Site (created through File > New Web Site...) and it worked fine. But I can't get it to work when I add it to a Web…
Jordan Rieger
  • 3,025
  • 3
  • 30
  • 50
2
votes
2 answers

How to set platform target for a ASP.NET "web site" project

I keep running into all sorts of nuances between the "web site project" versus "web application project" - here is the latest for me: I've inherited a Visual Studio 2005 solution with several class library projects (a DAL.dll, a Biz.dll, etc.) but…
2
votes
0 answers

Converting a WSP to WAP, generated xsd .designer files not compiling

I am converting an old WSP (VB) to a WAP, I have already converted it from .net 2 to .net 4 and it ran perfectly and I had no issues sadly, when I converted from a WSP to a WAP, the app_code folder moved over fine, but when I copied the remaining…
nat
  • 2,185
  • 5
  • 32
  • 64
2
votes
2 answers

Why does a web application project in VS2005 offer a 'Convert to Web Application' menu choice

I believe I understand fully the differences between Visual Studio 2005's web site model versus the web application project model that was fully delivered in VS2005 SP1 - but I have run into a confusing thing: I have a web application project I…
John Adams
  • 4,773
  • 25
  • 91
  • 131
2
votes
1 answer

converting .net website application to web application project compilation errors

We have a site that was originally a classic ASP site. It was converted to .NET a few years ago as website projects. There is almost no functionality in the C# code. It uses a master page and include files and contains one form. The rest of the site…
2
votes
1 answer

is there a certain way to configure web.config and make Razor available in ASP.Net 4 normal Web Application?

NOT Web Pages Application - I used VisualStudio 2010 and it is a multi-projects solution. Now the Web Application is in .Net 4.0 but with over 200+ aspx files in it, today I was just trying to add a few Razor references and see whether it could…
Lida Weng
  • 476
  • 6
  • 20
1
vote
0 answers

Is there a way to attach a profiler in Netbeans on a Tomcat 7 server?

I have been unable to start my tomcat 7 instance using the Netbeans 7 profiler. is there a setup that will alow this to work? I have tried a few different settings as well as trying to attach to a "generic webapp server". I only see the options up…
1
vote
3 answers

Maven Jetty - do not reload the whole application when modifying only static files

Maven Jetty plugin is very nice (I'm using version 6.1.26). The only annoying thing concerns static files' modifications. My web application uses Spring, follows the standard webapp Maven layout and I basically do not want the whole context to be…
fbiville
  • 8,407
  • 7
  • 51
  • 79
1
vote
0 answers

How to structure SBT projects with both jars and wars?

I previously asked a question here about how to use SBT with multiple sub project web applications. This worked excellent, now however I am trying to create a sub project that should NOT be a webapp, but which the other web app projects will depend…
Emil L
  • 20,219
  • 3
  • 44
  • 65
1
vote
0 answers

How to embed the contents from a link on a mobile website

I have to embed a add banner from a link source in my jsp page , and i followed the below steps **** or **
user595226
  • 89
  • 3
  • 10
1
vote
2 answers

What are the pitfalls of combining a web site project with a web application project in Visual Studio?

I have a web site project with a lot of files, it has become really slow to build. What I want to do is to create a web application project, and in Explorer add all the files to it, including the Bin folder. In Visual Studio I will not add these…
Michiel van Oosterhout
  • 22,839
  • 15
  • 90
  • 132
1
vote
4 answers

How can we know if class of jar version or the local copy is being called at runtime

I have same class file in my workspace as well as in jar file also (Which i had imported ) How can i know which file is being called at run time ?? I am confused because, in Eclipse, when i press Open Declaration on the instance, it shows the jar…
Pavan Kumar
  • 211
  • 1
  • 5
  • 8
1
vote
3 answers

how I can publish my web application and generate separate dlls?

I mean when I publish my web application asp.net publisher generate one assembly why ? I like to have different assembly. is it possible ?
kamiar3001
  • 2,646
  • 4
  • 42
  • 78
1
vote
1 answer

Create a Service with Java that runs when the app is deoployed ?

I have a Web Application with J2EE and Spring, related to an Oracle 10g Database. I want to create a Service in Java that will poll statistics from the Database and send mail every 5 min. This Service should start when the application is deployed…
1
vote
1 answer

How to make date picker shorter?

So my date picker is very long. It shouldn't be that long, but i dont know how to shorten it. This is the codes I used to get the date picker. [BindProperty, DataType(DataType.Date)] public DateTime Date { get; set; }
public void…
Atrageous
  • 51
  • 5