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.
Questions tagged [web-application-project]
256 questions
1
vote
2 answers
Configure Visual Studio 2010 web application project to run on localhost:8080
I am using local IIS instead of the VS Web Server but instead of a virtual directory on the Default Web Site, I want to configure my web application project to run in its own IIS Web Site on port 8080. How can I do this?

kenwarner
- 28,650
- 28
- 130
- 173
1
vote
2 answers
While publishing asp.net application add_data folder is missing in visual studio 2015.How can i get?
I am working in Visual studio 2015.App_data folder is missing while publishing the project.So I am getting an error like
…

JNas
- 11
- 2
1
vote
0 answers
why webappclassloader retains more heap space? how to resolve?
Heap Dump Screen SHot
As you can see in the picture why the webappclassloader retained heap this high?
Does this indicate towards any problem?
If it is, then how to resolve it?

Jagadeeswar
- 311
- 2
- 5
- 14
1
vote
0 answers
How to resolve assembly conflict in Visual Studio 2013 web app project?
I have inherited a web app which reports the following assembly conflict when I try to build it under Visual Studio 2013;
There was a conflict between "System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" and…

CAB
- 1,106
- 9
- 23
1
vote
1 answer
linking git file to eclipse dynamic web project
I have a git repository which linked to a remote repository. I'm currently working on one of the folders present in this git repository. This folder contains src,META-INF,WEB-INF and jsp files. It doesn't contain .project file (to import it as a…

RamValli
- 4,389
- 2
- 33
- 45
1
vote
1 answer
How to re-use .less and generated CSS across projects?
I'm currently working on a web-based project where we have a corporate branding style which overrides Bootstrap's default colours and styles via a .less file generating the .css for the stylesheet.
I've put a large amount of effort into making this…

toadflakz
- 7,764
- 1
- 27
- 40
1
vote
2 answers
MySQL Statement to joins 2 tables and sum same items qty
I have 2 tables, customer and transaction.
Customer:
--------------------------------------------
ID | Name | Tel
--------------------------------------------
1 | Peter | 123 4567
2 | John | 456 1234
3 | Alice …

Sykes Tang
- 31
- 1
1
vote
2 answers
How can I revert my project's Git repo without breaking Visual Studio?
What's the least painful way to get my git repository into the state I need it for our Visual Studio project?
In Visual Studio terms, we started with a Web Site Project. The current production version of the site is mostly an (old) branch of that…

Ed Poe
- 11
- 2
1
vote
0 answers
Modify C# Class Library Project To Web Application Project in Visual Studio
Is there a way to easily modify a pre-existing (empty) C# Class Library project to be recognized by Visual Studio as a Web Application project?

Mackers
- 1,039
- 8
- 21
1
vote
1 answer
Single WebApplication with multiple domain names
For example, I have a Web Application www.mywebsite.com based on classic ASP.NET and IIS 7.5. Now I registered another domain name www.mywebsite.cc. In my Web Application I want to create subfolder /cc and somehow transparently rewrite all requests…

Denis
- 3,653
- 4
- 30
- 43
1
vote
1 answer
Access constant from code behind in UserControl ASCX
I have the following UserControl ASCX:
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="TestUC.ascx.vb" Inherits="Common.DataQuery.TestUC" %>