Questions tagged [web-application-design]
75 questions
0
votes
2 answers
How to install Jinja2 and tornado for python on Windows XP
I am new to python and need to develop a web application using jinja framework.
On the jinja website, tar file is given and I don't know how to install it on windows.
Is it possible to install jinja2 as well as tornado web server on windows-xp??
Is…

user2979642
- 1
- 1
0
votes
1 answer
Multi form web application design
When porting a classic ClientServer Application to a web applciation (by totally rewriting it from scratch) a typical qusstion is
"How do I manage the multi form scenario i am used to?"
In a Windows (Delphi) application, such in my case, the user is…

UnDiUdin
- 14,924
- 39
- 151
- 249
0
votes
1 answer
Best way of solving multiple click on button
Multiple click on button on browser, sends multiple request to server.
The easiest way to solve it is to stop multiple click on browser by JavaScript.
Can anybody suggest what could be better way to solve it?
For easiness i'll give litter design…

Zuned Ahmed
- 1,357
- 6
- 29
- 56
0
votes
1 answer
What would be the best table structure for user post sharing system?
I am creating an app where users can create content, other users can like, comment those posts, now I want to implement sharing feature. I want to know what would the best way to implement this.
Following is the table structure for posts
| post_id |…

vikas devde
- 11,691
- 10
- 35
- 42
0
votes
1 answer
Modules or new Applications?
I've started working with Yii for a month (great Framework) and I am now going to build an application, ERP style.
The goal is to have a main application and then, according to user's roles and permissions, have the possibility to navigate (through…

Silver
- 693
- 1
- 10
- 27
0
votes
2 answers
What is the Correct way of using Layers in Web Application
We have web application designed using Spring + Hibernate. Following are the layers in our application.
JSP
|
Controllers
|
Facade
|
Service
|
DAO
While going through the code I saw some Service classes uses the…

Sachin Gorade
- 1,427
- 12
- 32
0
votes
1 answer
Webapp UI package
I'm creating a single page javascript webapp. If I want to make an app like this:
What is an ui package that could get me closest there?

Harry
- 52,711
- 71
- 177
- 261
0
votes
1 answer
Design web application setup for file sharing web application in jsp and servlet?
I am working on a file sharing web application. This application is being developed using jsp and servlet, MySql, Apache tomcat 6.0 webserver and Eclipse Juno IDE. My expert level is beginner to these given technologies.
This application have a file…

Param-Ganak
- 5,787
- 17
- 50
- 62
0
votes
1 answer
Where to store business values in .NET - SQL Server applications
This has always been an chicken and egg problem among developers. Where do you store business values that are used within your application rules. (In either ASP.NET, Window Forms or any data-driven application)
I've seen people creating tables where…

Andrej K
- 1,794
- 1
- 17
- 37
0
votes
3 answers
CSS with Web Application
What is the best way to allow web designers separate access to css files in a web application so it doesn't need to be recompiled everytime a change is made to just those files and they can overwrite their changes easily?

user1572948
- 121
- 1
- 1
- 4
-1
votes
1 answer
Enterprise Web Application Architecture Question
I am wondering if it would be possible to develop an enterprise-level web application without the use of a standard MVC structure and application server by carrying the business/flow logic and session data to the client-size Javascript and make it…

kukabi
- 1,273
- 1
- 9
- 14
-1
votes
2 answers
what does service layer stand for in MVC design pattern
I noticed a lot of java web applications added a service layer between the controller layer and the DAO layer. It will deal with the business logic, get the response from the DAO layer and return the result to the controller layer. I am confused…

roland luo
- 1,561
- 4
- 19
- 24
-1
votes
1 answer
How to send graph in image format to web page
I have to show the image of any graph (say pie chart) on web UI. That image must contain pie chart. But i don't want to add any functionality in UI code. I want to fetch data from DB on server , based on that i want to get pie chart and that pie…

user3265739
- 55
- 1
- 10
-2
votes
1 answer
how to move an inner html style tag to css correctly?
i'm new to css and html,
would like to separete between the css and html part in order to write better code.
Writing a list component with a favorite/unfavorite option.
this is the body in my index.html
would like to move style="visibility:hidden"…

learningtocode
- 57
- 8
-4
votes
2 answers
pub_date is invalid in Django tutorial error
C:\mysite>python manage.py shell
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from polls.models import…

Avnesh Shakya
- 3,828
- 2
- 23
- 31