-
JSP Login page? (6 messages)
- Posted by: anonym anonymo
- Posted on: November 07 2007 14:22 EST
Hellow. I´m very new at jsp. I whanted to make a login page for users. I already have a form where users can fill in name, aftername, username and password into my datebase. What i whanted to is to build a login page where users who have there username and password goes in to a another page where is says: welcome: your name is Bla bla. please help me..Threaded Messages (6)
- Re: JSP Login page? by Yunfeng Liang on November 07 2007 20:50 EST
- Re: JSP Login page? by anonym anonymo on November 08 2007 12:53 EST
-
Re: JSP Login page? by anonym anonymo on November 14 2007 01:23 EST
-
Re: JSP Login page? by arijit dey on November 15 2007 07:08 EST
- Re: JSP Login page? by anonym anonymo on November 15 2007 10:50 EST
- Re: JSP Login page? by Rohit Passi on November 17 2007 12:14 EST
-
Re: JSP Login page? by arijit dey on November 15 2007 07:08 EST
-
Re: JSP Login page? by anonym anonymo on November 14 2007 01:23 EST
- Re: JSP Login page? by anonym anonymo on November 08 2007 12:53 EST
-
Re: JSP Login page?[ Go to top ]
- Posted by: Yunfeng Liang
- Posted on: November 07 2007 20:50 EST
- in response to anonym anonymo
Hellow. I´m very new at jsp. I whanted to make a login page for users.
index.jsp: Login Username:
I already have a form where users can fill in name, aftername, username and password into my datebase.
What i whanted to is to build a login page where users who have there username and password goes in to a another page where is says: welcome: your name is Bla bla.
please help me..
Password:
welcome.jsp: Welcome welcome: your name is <%=username%>. -
Re: JSP Login page?[ Go to top ]
- Posted by: anonym anonymo
- Posted on: November 08 2007 12:53 EST
- in response to Yunfeng Liang
Iam sorry but this was not what i was lokking for. what i wanted to do is that those people who have a username and password in my database can logg in. If they dont have username or password they cant logg in.. -
Re: JSP Login page?[ Go to top ]
- Posted by: anonym anonymo
- Posted on: November 14 2007 13:23 EST
- in response to anonym anonymo
enyone who can help me please?? -
Re: JSP Login page?[ Go to top ]
- Posted by: arijit dey
- Posted on: November 15 2007 07:08 EST
- in response to anonym anonymo
Ok! First thing first, have you read about java beans? if yes then write jdbc code inside the javabean which will accept the username and password as input and validate against you database. If you have also read about servlets... then write the validation code inside the servlet and call that from jsp. -
Re: JSP Login page?[ Go to top ]
- Posted by: anonym anonymo
- Posted on: November 15 2007 10:50 EST
- in response to arijit dey
Well, I have read very little about both of them, but not that much. Is thiere eny good place where I can read about them?? -
Re: JSP Login page?[ Go to top ]
- Posted by: Rohit Passi
- Posted on: November 17 2007 00:14 EST
- in response to arijit dey
read about j_security_check and its itegration with your server....