Questions tagged [web-project]
162 questions
2
votes
2 answers
How do I format table headers with a specific design?
I'm working on an assignment where we have to create a website that is formatted similarly to a picture of a resume. The picture is here: link
I have most of the formatting correctly, but there are a couple things I can't figure out. First of all,…

ChaCol
- 223
- 1
- 7
- 19
2
votes
1 answer
Javascript - Code stops working after click on button
I'm trying to create some sort of calendar app.
When you click on a blank box it shows a form to create an event.
You use "ANTERIOR" or "SIGUIENTE" to navigate the calendar.
The form appears correctly when you click on a box until you click either…

angardi
- 367
- 3
- 14
2
votes
1 answer
Visual Studio 2015 does not find external .dll even after copying in bin folder, but only after copying to c:\Windows\
I try to build a Web-project in Visual Studio 2015 which references a c# .dll-project "dotnetWrapper" which is a c# wrapper for a c++ project "managedDllWrapper" which includes some 3rd-party 64-bit native c++ .dll.
The referenced projects and the…

Peter
- 143
- 2
- 8
2
votes
1 answer
How to convert an existing eclipse GWT project into a Dynamic Web Project?
I am using Eclipse Juno and I have a Java GWT project (SDK version 2.2). I tried setting the project facets to use Dynamic Web Module and also got rid of the GWT dependencies by going to the web toolkit settings and unchecking the selected…

A Null Pointer
- 2,261
- 3
- 26
- 28
2
votes
1 answer
Where in what files does the binary reference information be saved in VS.NET 2010 web project?
I have a vendor help develop a web project using VS.NET 2010. I got the delivered source codes from source code control system and tried to build it. There is an error message showing that one namespace is unknown, which is due to missing the…

Soros Liu
- 96
- 1
- 5
1
vote
0 answers
How to publish a Visual Studio project with script
is someone knows how to publish a Visual Studio project by script which will do the equivalent of Right-click on the Web or WCF project and selecting "Publish..."?
I don't want to deploy files on IIS! I want only create files before copying it on…

Constantin
- 71
- 5
1
vote
0 answers
Unable to resolve downloadable font errors in ReactJS front-end application built using Material UI deployed in Azure App Services ASP.NET V4.8
I have developed a ReactJS front-end project, built using Material UI. I have built it using npm run build command and deployed the application in Azure App Services ASP.NET V4.8 stack.
Everything looks fine but I'm getting a minor error.…

sunbogaa
- 405
- 2
- 6
- 12
1
vote
0 answers
How do I import Eclipse Dynamic Web Project into IntelliJ?
I am new to Spring MVC, learning from a course and used to IntelliJ IDEA. I don't know how to create a Dynamic Web Project in IntelliJ, so I used to create the project files in Eclipse and then open the files from IntelliJ. But now that I have…

Fahim Hassan
- 61
- 1
- 9
1
vote
1 answer
In Eclipse link two dynamic web projects to another project working as a library
Is there a way to split up a Dynamic Web Project in Eclipse into two libraries and link them up properly?
So, I'd like to have a library project and two other applications specific web projects. Both using the library project.
I looked into the…

Ayyoudy
- 3,641
- 11
- 47
- 65
1
vote
2 answers
two webproject esapi error: The selected type was not set via the ESAPI validation configuration
I have a was 9 server with two different web applications, each one with the esapi 2.1 library with its ESAPI.properties and validation.properties…

enK
- 11
- 1
1
vote
1 answer
POST method in RESTfull problem with the sql or with the Statement to generate id?
GET, PUT and DELETE work, but trying to do the POST method it doesn't work. In my data base, 'usuario' has an id, a name and age (edad).
@POST
@Consumes({MediaType.APPLICATION_XML,MediaType.APPLICATION_JSON})
public Response crearUsuario(Usuario…

Hugo Álvarez
- 11
- 2
1
vote
1 answer
Trying to acceess data from fetched result from RapidAPI
I am very new to web programming, and I need a help.
I am using Node.js to fetch data using RapidAPI
The fetched result returns me with Parsed JSON format in array.
However, if I were to give an index, it's returning alphabet instead of item I…

user14581248
- 33
- 4
1
vote
1 answer
Is Python ideal for this web project?
I'm working on a school project which I would like to showcase in a web browser or application.
I would like the user to control the work with a mouse or keyboard. I want to show a unique image based on where the curser is over a visible grid. An…

defarm
- 81
- 1
- 12
1
vote
0 answers
How does the MANIFEST.MF look like in a web project?
The conditions of the question are slightly artificial, but that's the task. The project has to be built in Apache Ant. The web project itself is mainly based on JSF. The task is to write MANIFEST.MF for building the project with an executed class…

coder-coder
- 323
- 4
- 13
1
vote
1 answer
how to add pagination to the nested comments in laravel?
class Nested extends Model{
public function nestedfunc()
{
return $this->hasMany(Nested::class, 'parent_id');
}
public function childnestedfunc()
{
return $this->hasMany(Nested::class, 'parent_id')->with('nestedfunc');
}
}
//this is my…

alina
- 13
- 2