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
weblogic with elipselink java.lang.StackOverflowError
I am deploying my rest service war to weblogic 12.1.3.
I have set true as my rest war is first to find by class loader.
I have also set app package preferences as below :
…

Razak Dangi
- 1
- 4
0
votes
0 answers
Will accessing an application on local system using IP and accessing it using remote system using same IP , Will output differ, If so why?
I am running an application developed by me on my local system with
IP (eg - http://192.168.0.126/career_app/name/controller_name/method_name/).
When I am accessing the same on my system, the output is as desired!!
But when I switch to my laptop…

Hithesh
- 3
- 4
0
votes
0 answers
Using Session Manager User Credentials active or in active
How to validate user name and password Using Session manager?
I need 3-tier architecture code
public partial class Login : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void…

Chetan Kumar
- 1
- 3
0
votes
0 answers
How to get a reference ServletContext from a Quartz job?
I would like to get a reference ServletContext from a Quartz job to access a file from my own web application properties in the WEB-INF folder but I'm newbie with Quartz Scheduler and I can not.
The file is in: /WEB-INF/mypreferences.properties and…

Jorge Alvarado
- 57
- 1
- 1
- 8
0
votes
0 answers
Deploying web application on-site
I have been deploying web applications on my server for all clients.But now I want to deploy a web application on client site..by which he means they should be able to use the application on their network only and could be used without…

RelatedRhymes
- 428
- 6
- 26
0
votes
0 answers
Using Google Cloud Datastore / High Replication Datastore
I need help at connecting my server to the Google App Engine.
I created a new Web Application:
protected void doGet(HttpRequest req,HttpResponse resp){
DatastoreService datastore=DatastoreServiceFactory.getDatastoryService();
Entity entity =…

Paul S.
- 79
- 1
- 9
0
votes
3 answers
Converting an asp.net web site project type to a regular project
I've created a new vs.net project and added all the files from an asp.net website project.
When I compile, it couldn't find a reference to a class.
In the AppCode the class was defined, but without a namespace.
So I added a namespace, and then on…

Blankman
- 259,732
- 324
- 769
- 1,199
0
votes
2 answers
Scheduling concurrent jobs in quartz.net
I need some help. I am trying to figure out how to schedule dependent jobs with quartz.net and try to avoid conflicts as am using connection to database.
i have a web application with 3 classes: DownloadJob, UploadJob, Table1-Table2Job.
DownloadJob…

MrMartinico1988
- 5
- 4
0
votes
1 answer
ASP.NET web application project, BLLs and namespaces
We have a large ASP.NET project which has 100s of BLL classes. In our ObjectDataSources in the UI layer we have typename="". Because we are converting to a web application project, the typename has to include the root namespace of the project. …

jaffa
- 26,770
- 50
- 178
- 289
0
votes
1 answer
JspViewResolver doesn't work in java configuration - based spring applciation
I have only Java-based configuration in Spring Application. I have created user entity and Dao for finding / creating users.
The controller has two GET methods - one for user and one for users list and one POST method - for creating / editing a…

argh
- 143
- 4
- 16
0
votes
1 answer
Adding Web Site Project style compilation on demand to Web Application Project in Visual Studio
I have a web application project that I wish to keep as a web application project, however is it possible to have part of it compiled on demand like a web site project? I would like one folder where I can add aspx pages to the website after its…

Sprintstar
- 7,938
- 5
- 38
- 51
0
votes
0 answers
How to store logging statements(ex: console.log("some statements")) of Javascript in seprate file in PlayFramewrok application?
I have one Activator project, the controllers which i have written for that i am able to log into seprate file. Now i have some JS file which contains some logging statments too which i want to store in same log file.
Application.java sample
public…

undefined
- 19
- 1
- 4
0
votes
1 answer
Web Form code behind not creating Partial Class, page inherits "ProjectName.ClassName" instead of just "ClassName". Visual Studio 2013
So I'm trying to make an "About" page that can be shared across many web applications that we use. To do this, I'm going to be saving the "AboutBox.aspx" and "AboutBox.aspx.vb" files on our web server. Then, from each application, I'll open a pop-up…

wedsa5
- 39
- 8
0
votes
1 answer
.net 4.5 web application redirects to ReturnUrl=%2f
I created a web application targeting 4.5.2 framework and using IIS8.
The starting page should be Default.aspx, It used to work OK on framework 3.5 but on framework 4.5.2 it redirects me to Domain\Default.aspx?ReturnUrl=%2f web page even after I've…

Joy
- 1,707
- 7
- 29
- 44
0
votes
1 answer
Connection string has been loaded from Web.Config instead of App.Config
I have console application in cron.exe which reference the web application. Cron project has its own App.Config with the connection string. The Cron Project reference web application which has web.config with different connection strings.
When I run…

Tomas Kubes
- 23,880
- 18
- 111
- 148