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
5
votes
5 answers

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 error simply says it can't parse the .aspx…
PositiveGuy
  • 46,620
  • 110
  • 305
  • 471
5
votes
2 answers

How to decide between developing a web application and a desktop application

I am a software engineer intern for a manufacturing company and they want me to develop an application for the company. They are leaning towards a web application however, I wish to know whether a desktop application would better fit the job.…
Jonathan Tan
  • 129
  • 2
  • 3
  • 12
5
votes
0 answers

How do I configure a Web Application project for working with html pages without .Net code?

We have a few html pages in one of our solutions that are meant to be extremely simple, client side only, pure html+javascript pages that access our web api. The api itself is in a web application project in the same solution. We are now using a web…
julealgon
  • 7,072
  • 3
  • 32
  • 77
5
votes
1 answer

Why does my IIS Express web application project throw an error in the output window when it attempts to load?

A web application project which was converted to IIS Express and then checked into Team Foundation Server is kicking out an error when other developers try to load it. The error appears in the Visual Studio Output window and the associated web…
ahsteele
  • 26,243
  • 28
  • 134
  • 248
4
votes
2 answers

A list of everything I need for running my app on a web server

What I want to know are actually 2 things. Part 1: I have a developed source code for an application in python that uses Django framework. What I want is to be able to run the code on a developer machine and see the result. What do I need for…
StanM
  • 827
  • 4
  • 12
  • 33
4
votes
2 answers

Web App Console error: firebase-auth.js:1 Uncaught Error: Cannot instantiate firebase-auth - be sure to load firebase-app.js first

I have created a web app project in Firebase. And added all the the Firebase configuration scripts including api keys provided for project. I want to integrate Google Sign-in in web app using firebase and I've followed the documentation provided by…
4
votes
1 answer

Why do Asp.net web project have garbage values in the url?

I have tried googling and searching for this issue on SO - but have had little success - primarily because I am not sure whether I am searching right. I am working on an ASP.Net Web Application Project (not website) using Visual Studio 2008, C# and…
saurabhj
  • 2,357
  • 2
  • 24
  • 34
4
votes
3 answers

Running MVC application as a standalone app

We were able to create a node js web application (html, css, angular js and node js) and package within node-webkit to run it as a standalone application. This works like a charm !!!. Similar to it, we want to package .net MVC web application as a…
4
votes
4 answers

Access file inside WebContent from servlet

I trying to access the html files inside the WebContent/alerts folder using its relative path from servlet. But i unable to access it using its relative path, Access the file inside WebContent from Servlet using relative path: protected Element…
4
votes
2 answers

How to convert maven project to web application project?

I want to convert a maven project to a web application project, which should contain web.xml. I am using eclipse juno 4.2 with m2e (maven integration for eclipse) plugin software. Any reply would be appreciated.
4
votes
3 answers

Visual Studio 2008 - Moving solution files (sln, suo)

If a VS2008 project is created initially with a web app project, and class projects are added, and the structure is like this: Parent Folder Web App Project Folder - (solution Files in this folder) Class Project 1 Class Project 2 …
Steve
  • 5,802
  • 12
  • 54
  • 76
4
votes
1 answer

convert web application to a web site

I have a c# .net VS2010 web application that contains only classic asp files. What I want to do is convert the web application to a web site to make it easier to manage the classic asp files. How can I convert from web application to web site? I…
amateur
  • 43,371
  • 65
  • 192
  • 320
4
votes
4 answers

asp.net website vs web application

I've read a lot of discussions about web site vs web applications in asp.net The way we work in my team (10 programmers), we use the project type "web site", and for our dev environment, we just copy the source code (aspx + .cs) to the server. This…
3
votes
1 answer

Asp.net website to web application project (Old_App_Code folder)

I am converting a asp.net website (Visual studio 2010) to web application project (Visual studio 2010). Once I convert it I see a 'Old_App_Code' folder. How to convert the class files in that folder to WAP? Do I need create a seperate class library…
CoolArchTek
  • 3,729
  • 12
  • 47
  • 76
3
votes
3 answers

Is it possible for a website project to reference a signed assembly in visual studio?

I'm aware of the following two different types of web projects in Visual Studio 2008: Website project Web application project A web application project can reference a signed assembly as long as the web application's assembly is also signed with…
1
2
3
17 18