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
1
vote
0 answers

How to deploy vue cli project to aws lightsail

I am a beginner at deploying web apps, however I have some experience developing them. I just finished a project I amde using node, express, and vue. I am trying to deploy it to AWS Lightsail. So far what I have done is create a nodejs instance and…
1
vote
1 answer

httpContext.Current.Request.RawUrl used to return path with extension

I have some asp.net c# code that grabs the path name and uses it for various authorization and authentication tasks. In our web site project, this is what returns the path (with extension, for example: index.aspx?querystringparam1=3&qp2=4): string…
Owen
  • 426
  • 5
  • 15
1
vote
2 answers

Static web application in docker using nginx - localhost refused to connect

Docker file contains the following command FROM nginx COPY . /usr/share/nginx/html To build my docker image i have used following command docker build -t /img . To run the docker image docker run -p 80:8080 /img But i am not…
1
vote
2 answers

Windows 7 IIS 7.0 - setting an application to run under localhost

If i create a web application inside Visual Studio called MyWebApp, how can I make sure it can be accessed at the following address: http://localhost/MyWebApp NO PORTS required thanks VS 2010 IIS 7.0 Windows 7
sarsnake
  • 26,667
  • 58
  • 180
  • 286
1
vote
0 answers

Temporary User In AspNetCore Identity

I spun up a simple AspNetCore (3.1) web application based on a built in template with in-app authentication (following basic tutorials). I can run my app and when I try to go to a secured page I'm required to log in. I register and can log in as…
1
vote
1 answer

Unable to access my files created by me or added by me on googledrive from google API having scope as drive.file

the drive.file scope is restricting the scope of the app to only the files created or opened by the app but the files shared or added to the folder created by app is not accessible, Whereas drive as a scope gives the full access to the entire drive…
1
vote
2 answers

Web Application Project not accessible due to form tag on every page

I have a legacy Web Application Project (WAP) that I need to ensure is accessible. This type of project has a Master Page (Site.Master) and each page (called a Web Form) inherits from that page to maintain a consistent look. A fresh Master Page…
1
vote
1 answer

want to update a column of particular row by clicking on button in jsp

There is a table containing different columns. want to Update a particular column by clicking on button What I did like, I just used onclick() of button where i passed the servelet file and update the column. but its update all columns. So…
Abhishek Gupta
  • 230
  • 2
  • 12
1
vote
0 answers

Error CS0102 after converting to Web Application

I have inherited an old Web Site Project. In the long run I'm supposed update it a lot but initially I'm just supposed to make it work in a more modern development environment. Before I started I opened the web site in Visual Studio 2017 made made…
1
vote
0 answers

Vue buildt doesn't show router pages

I'm doing a webpage with Vue (Vue-bootstrap) and I'm having problems to make it works. I'm uploading the content of the dist folder after using npm run build, the project was started using `vue init bootstrap-vue/webpack my-project. I've tried to…
1
vote
3 answers

How to change .Net Core 2.1 project to .Net Core 2.0 project

Having trouble converting my .Net Core 2.1 project to .Net Core 2.0. I changed the target build type in my project solution properties as well as target framework in my .csproj file. Visual Studio will not let me build this application because the…
1
vote
1 answer

Difference in how Visual Studio & MSBuild treat the OutputPath of Web Application projects

I am using VS 2010 web-application project. I want to change the default OutputPath property of the web-application to a directory elsewhere. This does not seem to be entirely working when I have an other project in the solution: FIRST: Create a…
Raghu Dodda
  • 1,505
  • 1
  • 21
  • 28
1
vote
2 answers

ASP.NET Configuration Won't Open

I can't imagine why it won't open! I've check the issue which could be causing this and they are not having login control placing my project in directory with complicated symbols or sth like that and my project dir is clean "C:\Documents and…
Mazen Elkashef
  • 3,430
  • 6
  • 44
  • 72
1
vote
1 answer

System.Security.Principal.WindowsIdentity.GetCurrent().Name Issue on Server

Do you know why when I use: System.Security.Principal.WindowsIdentity.GetCurrent().Name on a .aspx.cs page in local machine it returns my user name, for example "CORP\323432" and when I publish the same code on server with IIS it returns the IIS…
1
vote
1 answer

log in as another user in asp.net web application

We have a cloud based asp.net web application (asp.net web form)which is for dry cleaners , and our customers have there own userid and password to login .So to give them customer support we get there system access through teamviewer and then check…
Rachit Shah
  • 53
  • 1
  • 5