• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Login Page

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am creating Jsp web application. I am in need of login page coding. Shall you give me the coding for login page using UseBean Property in JSP especially validation for login page.
 
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
make some starting.
people here will help you to finish the things .
usebean
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Dhivya: No we shall not. As Subhash says, we *will* go to great lengths to help once you get started, or if you have any specific issues, however.

Although if you really want to do this entirely in JSP you'll find people less willing to help, since Java code belongs in a Java file, not a JSP!

Also, you need to be more specific as to your requirements: Do you want client- or server-side validation? Or both? What are the validation rules? Do you require assistance with the login aspects as well, or just the JSP? Are you using a particular web application framework?
 
Greenhorn
Posts: 20
Google Web Toolkit Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As said in previous post I would like to add the following to the list before you start thinking of coding login page.
1> technology
2> architecture
3>security

Please try to consider these as the main aspects as even today I see many popular sites have some security issues when a user logs off due to back button problems of the browser.
 
Ranch Hand
Posts: 806
MySQL Database Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ms. Divya, Code will not be given. I ll state a simple algorithm, you can proceed.

First code a html page with asks the user to enter his login credentials. On submitting this page these credentials ll be submitted to a servlet, this servlet invokes a model and the model searches the details in an appropriate table. Suppose the model returns true to the servlet if record exist or false if not exists.

The servlet takes decision whether to redirect him to home page or to login page again.

Hope this helps you.
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Dhivya kalidoss wrote:I am creating Jsp web application. I am in need of login page coding. Shall you give me the coding for login page using UseBean Property in JSP especially validation for login page.



Hello, Dhivya.

Incidentally, you can try to re-use some code from here.
 
Remember to always leap before you look. But always take the time to smell the tiny ads:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic