Subversion Repositories SmartDukaan

Rev

Rev 595 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 595 Rev 620
Line 62... Line 62...
62
    public String create() {
62
    public String create() {
63
    	log.info("PersonaldetailsController.create");
63
    	log.info("PersonaldetailsController.create");
64
 
64
 
65
		if(this.userinfo.isLoggedIn()){
65
		if(this.userinfo.isLoggedIn()){
66
			String name = this.request.getParameter("txtName");
66
			String name = this.request.getParameter("txtName");
67
			String dateOfBirth = this.request.getParameter("dateOfBirth");
67
			String dateOfBirth = this.request.getParameter("txtDateOfBirth");
68
			String sex = this.request.getParameter("sex");
68
			String sex = this.request.getParameter("sex");
69
			String communicationEmail = this.request.getParameter("txtCommEmail");
69
			String communicationEmail = this.request.getParameter("txtCommEmail");
70
			String subscribeNewsletter = this.request.getParameter("subscribe");
70
			String subscribeNewsletter = this.request.getParameter("subscribe");
71
			String phone = this.request.getParameter("txtPhone");
71
			String phone = this.request.getParameter("txtPhone");
72
			
72