vote up 2 vote down star

Hi,

I want to create a website over banking. I just wanna know what's more do I have to know to create website. Is the knowledge of servlet, JSP, HTML, CSS is enough to make a website? Or do I have to know Javascript as well?

Thanks in advance.

flag

5  
If it's really a banking site, knowing one or two things about security might be in order... – balpha Jun 20 at 13:45
What requirements have the bank in questions put to you? – Thorbjørn Ravn Andersen Jun 20 at 13:53
4  
If I had to guess i'd say "over" = "about". He wants to create a website ABOUT banking. No real bank would trust development of a banking portal to an unknown without a serious existing web development portfolio. If it is a real bank please tell us which one so we can get our money out now. – SpliFF Jun 20 at 14:40
1  
Most likely Greenhorn wants to create a sample banking app, rather than a real banking web application. – RichardOD Jun 20 at 15:11
1  
I knew this question would be entertaining the moment I saw the wonderfully specific title ^_^ – Matchu Jun 20 at 18:35
show 3 more comments

6 Answers

vote up 26 vote down check

Please step away from the keyboard. If I understand your question correctly, you are trying to write a banking website, and you are asking questions about whether some HTML, CSS and server-side code is enough? Technically, the answer is yes, that's all you need to make virtually any site. Realistically however, you should realise that knowledge of CSS and HTML are the least important things in regards to online banking. Asking a question like this makes it sound like you've never made a website before (which is fine: we all start somewhere), but creating a site which deals with people's life savings should only be done by experts.

link|flag
2  
+1 LOL First sentence is PURE GOLD – cletus Jun 20 at 14:27
Please step away from the keyboard. LOL! – RichardOD Jun 20 at 18:22
Well, well, people are unnecessarily harsh on that. Don't step away from keyboard. Step away from writing any production code. – ilya n. Jun 20 at 23:02
vote up 2 vote down

To make a banking website you really just need to know html, and some form of scripting language, perl, python, php, asp etc, that allows you to dynamically change the web pages sent to the the user so it can have the updated info from the bank database, like transactions etc. Knowing Css , and javascript are just icing on the cake.

link|flag
4  
Javascript is "icing on the cake": MAYBE. CSS: a must. Making a banking website for your first project: big no no. – nickf Jun 20 at 14:13
@nickf: Oh you don't need CSS, you can just lay everything out in tables. (JK) ;-) – Dexter Jun 20 at 14:15
vote up 2 vote down

This is like saying "I'm building a house, all I need to know is how to hammer in nails and cut wood right".

The difficulty in building a banking site will not be the actual HTML, CSS, or Javascript. The difficulty will be in knowing how to build it correctly. You have to address fundamental concepts like security, legal issues, and reliability. A bug in the code that gives someone an extra "0" is not going to be good :)

link|flag
vote up 1 vote down

Hi, it is more than enough. Basicly you only need HTML to create a website. CSS is healpful for design issues. JSP is used to create serverside generated pages, you could also try php. If you also want some graphical effects (blending in, mouse over action) i would recommend you jquery, this way u don't really need to learn javascript.

link|flag
Perhaps I am splitting hairs but I don't think that statement is very true. JQuery is indeed an easy library to use, however you dostill need to understand at least some of the concepts of javascript to use it effectivly. – Crippledsmurf Jun 20 at 13:55
@crippledsmurf: agreed. jQuery is a toolset that abstracts away a lot of the crud that you shouldn't have to deal with, but you still need to know javascript. – nickf Jun 20 at 14:14
And you should use the stdlib so you don't have to learn C. – Chuck Jun 20 at 15:17
What i actually ment, is that it is enoth to look at some jquery tutorials, it is not necessery to learn javascript explicitly. But agreed u need basic knowlege of javascript and you can get it at a lot of jquery tutorials. @Chuck lol? – Red33mer Jun 21 at 13:28
vote up 1 vote down

servlet: AFAIK, even Sun does not recommend servlet. Prever JSP over servlet

JSP: you should know one server side programming language. JSP is fine but I recommend PHP if you are not going to use many pre-existing java-JSP code or packages (I used both on some of my projects, I prefer PHP)

HTML: yes you should

CSS: useful for styling. However, you can steal it:) (from websites like free-css)

Javascript: not mandatory but helpful

--I recommend you to pass over w3schools tutorials:

http://www.w3schools.com/

html, php, css, Javascript

--and if you decide to use javascript, you can check ajax tutorial

JQuery: a very useful Javascript library: cross platform (firefox, internet explorer etc. compatible). might help, google it for the site and tutorials

--if you need a fancy Javascript menu, you can use jscook menu

link|flag
vote up 0 vote down

It depends on what you want your web page to do.

In short, yes, knowledge of servlets, JSP, HTML, and CSS is plenty to learn to make a website.

If you want your site to support things like AJAX or have dynamic interaction with the user on each page, then you'll want to learn Javascript as well.

Also, many of the Javascript libraries like JQuery and Prototype make some types of display and formatting a lot eaiser, some some basic Javascript knowledge may go a long way in making your site look nice.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.