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
0
votes
1 answer
ASP.NET Web Application & NuGet - Package Updates Not Referenced
I've got an ASP.NET Web Application (in the formal sense, it's not a "Web Site" project). It references some number of NuGet packages (let's call them all v1.0).
If I edit packages.config to reference a newer version of one of the NuGet packages and…

Anthony Compton
- 5,271
- 3
- 29
- 38
0
votes
1 answer
How to make Visual Studio web app project that compiles nothing, yet still starts IIS Express and the debugger?
I want to make an MSBuild script that:
can be "built" or "rebuilt" or "cleaned" or "started" by Visual Studio like a normal project
doesn't actually compile anything
runs some custom tasks (arbitrary to the question)
supports Visual Studio firing…

Bryan
- 1,431
- 1
- 17
- 22
0
votes
2 answers
Does the web application project deployment package has web.config file un encrypted
Does the web application project deployment package has web.config file un encrypted.
What is the use of Package. why they say that in web application project only 1 dll is deployed however web.config file is still residing with connection string…

Shomaail
- 493
- 9
- 30
0
votes
1 answer
How to create new website in IIS using Web Setup Project in Visual Studio 2008 SP1
I have a Web Application Project and a Web Setup Project in my Solution.
When I run the MSI created by the Web Setup Project it only gives me the option to use an already existing website in the IIS on the local machine.
How can I get the installer…

Robs
- 8,219
- 6
- 41
- 57
0
votes
3 answers
Getting the url of an aspx page using the page type
I'm using a web application project.
I have a folder in my web root called Users and in the folder I have a page called UserList.aspx
What I want to be able to do is type in Response.Redirect(Users.UserList.URL)
What I reckon I can probably do is…
Stephen Lacy
0
votes
1 answer
Issue with calling c:import tag
I have two web application. one is running under XXXX server port and another application is running under YYYY port.
I am trying to get content from XXXX port in YYYY port. Generally it can be done by using iframe or c:import tag
Here i have used…

Anderson
- 1,100
- 2
- 13
- 17
0
votes
1 answer
Web Application creation using VS2010
I am tryin to write a GUI code for A window form application using VS 2010 (.netframework 4.0). However when inculde UI as in :
using System.Web.UI;
using System.Web.SessionState;
it tells me
the type or namespace name 'UI' does not exist in the…
0
votes
1 answer
VS2010 not obeying Output Path
I have a VS2010 Web Application Project that's compiled to bin\subdir\ via Output Path and without build events.
There's a few other projects that my main project is referencing but for some reason the dll's for the other projects goes into BOTH…

Jan Sommer
- 3,698
- 1
- 21
- 35
0
votes
2 answers
How to update an already published database?
I have a web application that has an SQL database.
For clarity I'm using Asp.Net 4.0/c#/SQL Server 2008 Web edition.
I recently puclished the site, which was my first, by creating a deployment package for the database.
Now a couple of months down…

dotnetnoob
- 10,783
- 20
- 57
- 103
0
votes
1 answer
Web site to Web App: aspx.cs can't see controls in .aspx
I am trying to convert a web site project to a web app and I'm running into some issues where the .aspx.cs files can't see any controls in the .aspx. I've tried deleting the .designer.cs files and converting to a web app again but that hasn't fixed…

elerdall
- 1
- 2
0
votes
1 answer
Converted Web Site Project to Web Application Project - Can not access UI Controls
I have converted a large project, currently in VS 2012 from a Web Site project to a Web Application project.
I have added the namespace to all of my .cs files.
I have ran the "Convert to web application" on the project and it has generated all of…

Bruce Pullum
- 249
- 1
- 2
- 13
0
votes
1 answer
Prevent VS2012 to convert my projects into Web Applications
We have a big solution that we just recently migrated to Visual Studio 2012. In this solution, one project is the main Web Application in IIS and the other projects are folders inside this Web Application. Every time we open the solution, VS2012…

Arturo Molina
- 1,051
- 11
- 21
0
votes
1 answer
how to change default connection string of profilebase
I'm using the Profile Feature in my web application. I got a helpful article at http://www.codeproject.com/Articles/290929/Using-ASP-Net-Profile-Feature-in-a-Web-Application. According to this article I coded my web.config , a custom profile class,…

Krishanu Dey
- 6,326
- 7
- 51
- 69
0
votes
1 answer
Web application deployment with external database
I have a Web application (website) that uses an SQL Server database.
I plan on creating anumber of clone sites so want to place the database in its own folder, outside of the main project folder.
It's the first time I've deployed a web application,…

dotnetnoob
- 10,783
- 20
- 57
- 103
0
votes
1 answer
LinkButton action repeating after clicking once
I'm using asp:LinkButton on my page and on click I download a file.But the issues is after
I have clicked the download Link Button if I click any other button on the page, it repeats the
download action. Can anyone throw some light about why this…

iJade
- 23,144
- 56
- 154
- 243