Registration Page is wrong?

the code on the registration is:
date -u +%VLinux|sha256sum|sed 's/\w//g'
that always resulting:
it should be
date -u +%VLinux|sha256sum|sed 's/\W//g'

kiz wrote:
the code on the registration is:
date -u +%VLinux|sha256sum|sed 's/\w//g'
it should be
date -u +%VLinux|sha256sum|sed 's/\W//g'
Just so no one else spends five minutes not blinking trying to figure out what the difference is, the second line has a capital 'W'.

Similar Messages

  • [SOLVED] About the registration page...

    okay to make this shorter ive registered here using the answer of this guy
    http://answers.yahoo.com/question/index … 504AAO187t
    im so interested in arch linux that's why searched for the answer and i found one. lol.
    a to that captcha.
    im running backbox linux right now and my system generated this:
    7494e13078df6f09d5aac285cedc26727b40af6db8e43f8a3b23710e2a1ef268
    Questions:
    do we really need to run Arch Linux in order to get the right answer?
    Answer:
    i get it now it shows the week number and passes it into sha256sum.
    does that captcha really prevent bot from registering?, if the answer to that captcha spreads all over the net, then that would render the captcha useless.
    Suggestion:
    Why don't Arch use a dynamic captcha. what i mean is that everytime the user proceeds with the wrong answer the captcha change into another problem just like those. and then Arch has a database for that captcha alone a database that stores "Problem and Answers" to those captcha showed in the registration page.
    sorry for the bad english as english is not my native language. and sorry if i didn't introduce myself.
         ey3blast
    Last edited by ey3blast (2012-12-26 13:58:31)

    well I've read your post on this thread:
    https://bbs.archlinux.org/viewtopic.php?id=153660
    and thank you for the quick response better than RTFM. linux community is really great and im learning alot hope to learn more from the community so i could get the chance to contribute.
    you're actually right about that post there might be something wrong with the system clock. so i tried to echo date -u +%W$(uname) and it shows this weird output "date -u +%WLinux" i don't know what's wrong with this cause my system clock is running well i don't know why it doesn't show the week number though. anyone help me fix this thing?
    --- Fixed the problem ---
    well here's what i did, at first i run the command but i got the wrong answer because my system clock was turned off at that time then it shows nothing then i tried to echo the command and there i got the wrong answer. on the second time i run the command with the system clock turned on i still echoed it that's why i still got the wrong answer it shows this weird output when echoed "date -u +%WLinux". what i did right now is that i remove the echo and there i get the correct answer for the captcha.. hope this thread will help newbies like me in the future.
    Thank you for the help Mr. Trilby. I appreciate it.
       ey3blast
    Last edited by ey3blast (2012-12-26 13:44:08)

  • Help in jsp registration page/form

    hello! i am new with jsp. and i am having problems with my registration page. i does't seem to add data into my database and worse, it doesn't seem to connect to the database. appreciate the help. thanks.
    registration.jsp
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@ page import="java.sql.*" %>
    <%
        String connectionURL = "jdbc:mysql://localhost:3306/petdepot?user=root&password=12345";
        Connection connection = null;
        Statement statement = null;
        ResultSet rs = null;
        Class.forName("com.mysql.jdbc.Driver").newInstance();
        connection = DriverManager.getConnection(connectionURL, "root", "12345");
        statement = connection.createStatement();
    %>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Pet Depot</title>
    </head>
    <body>
    <%
        String uname = "";
        String pwrd = "";
        String pwrd2 = "";
        String dbname = "";
        String dbaddress = "";
        String dbcontactNo = "";
        String dbemailAd= "";
        String dbnote="";
        String username = request.getParameter("username");
        String password = request.getParameter("password");
        String password2 = request.getParameter("password2");
        String name = request.getParameter("name");
        String address = request.getParameter("address");
        String emailAd = request.getParameter("emailAd");
        String contactNo = request.getParameter("contactNo");
        String note="";
        if ((username!=null)&&(password!=null))
                if ((username== "")||(password== "") ||(name== "")|| (address== "") || (emailAd== "")||(contactNo== "") )
                    note = "Please complete all the fields.";
                if ((username== "")&& (password== "") && (name== "")&& (address== "") && (emailAd== "")&& (contactNo== "") )
                    note = "You did not enter any information. Fill-up the form to register.";
                else if ((username!= "")&& (password!= "") && (password2!= "") &&(name!= "") && (address!= "") && (emailAd!= "") && (contactNo!= "") )
                    int pwdOneLength = password.length();
                    int pwdTwoLength = password2.length();
                    if (pwdOneLength == pwdTwoLength )
                        if ((pwdOneLength >= 6))
                            if (password.equals(password2))
                                String found = "NO" ;
                                rs = statement.executeQuery("Select * from useraccounts where username = '"+username+"' ");
                                try{
                                while(rs.next())
                                    found = "YES";                             
                                }catch(SQLException e){out.println(e.getMessage());}
                                if ( found.equals("NO"))
                                        statement.executeUpdate("Insert into useraccounts (username, password) values('"+username+"','"+password+"'");
                                        statement.executeUpdate("Insert into userprofile (name,address,contactNo, EmailAd) values ('"+name+"','"+address+"', '"+contactNo+"', '"+emailAd+"'");
                                        username = "";
                                        password = "";
                                        password2 = "";
                                        name = "";
                                        address = "";
                                        emailAd = "";
                                        contactNo = "";    
                                else
                                    note = " <span class=\"style1\">The username you entered is already in use. Change your username </span> ";
                            else
                                note = " <span class=\"style1\">Please enter the password and the password confirmation correctly.</span> ";
                    if ((username== null)|| (password== null) || (address== null) || (name== null) || (emailAd== null) || (contactNo== null) )
                password = "";       
                password2 = "";
                if (username== null)
               {    username = ""; }
                if (address== null)
                {  address = ""; }
                if (name== null)
                {  name = ""; }
                if (contactNo== null)
                {  contactNo = ""; }
                if (emailAd == null)
                {  emailAd = ""; }
    %>
           <p>REGISTRATION FORM   <br> <br> <%= note %></p>
           <p>Fill-up all the fields below and click the SUBMIT button </p>
    <form id="form1" name="form1" method="post" action="">
      <label>username: 
      <input name="username" type="text" id="username" /></label>
      <p>
        <label>password:
        <input name="password" type="password" id="password" />
        </label>
    </p>
      <p>
        <label></label>
      </p>
      <p>
        <label>Name:
        <input name="name" type="text" id="name" />
        </label>
    </p>
      <p>
        <label></label>Address:
        <input name="address" type="text" id="address" />
      </p>
      <p>Email Address:
        <input name="emailAd" type="text" id="emailAd" />
      </p>
      <p>ContactNos:
        <input name="contactNo" type="text" id="contactNo" />
    </p>
      <p> </p>
      <p> </p>
      <table width="396" border="0">
        <tr>
          <td width="46"> </td>
          <td width="144"><input name="uname" type="text" id="uname" /></td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
        </tr>
      </table>
      <p>   </p>
      <p>
        <label>
        <input type="submit" name="Submit" value="Submit" />
        </label>
      </p>
    </form>
    </body>
    </html>

    String connectionURL = "jdbc:mysql://localhost:3306/petdepot?user=root&password=12345";The connectionURL is WRONG
    Probably it could be like ..
    String connectionURL = "jdbc:mysql://localhost:3306/petdepot"
    I hope petdepot is your DB name and mysql is installed locally on your machine.
    Class.forName("com.mysql.jdbc.Driver").newInstance();Remove .newInstance() and it should be ..
    Class.forName("com.mysql.jdbc.Driver");
    I suggest you make a java bean for DBConnection as below ..
    package yourpackage;
    import java.sql.DriverManager;
    import java.sql.Connection;
    import java.sql.SQLException;
    * The class file will be responsible for returning the database connection information.
    * @author Rohit Kumar
    * @version 1.0
    * @date 17-Dec-2004
    public class DbConnection
         * This method shall be used for getting Client Connection.
         * @return Connection
         * @throws Exception
        public Connection getClientConnection() throws Exception
            try
                Class.forName(ApplicationPropertyRead.getProperty("DBDRIVER"));
            catch (Exception e)
                System.out.println("Exception :"+e);
            Connection oCon=DriverManager.getConnection(ApplicationPropertyRead.getProperty("DBURL"),
                                                        ApplicationPropertyRead.getProperty("DBUSER"),
                                                        ApplicationPropertyRead.getProperty("DBPASSWORD"));
            return oCon;
    }Instead of my method call ApplicationPropertyRead.getProperty("..") you may hardcode it for now as you are learning JSP.
    Then check if your connection is successful or not in your JSP.
    <%@ page import="yourpackage.DbConnection*" %>
    <%
    DbConnection dbConn = new DbConnection()
    Connection connection = null;
    try
         Connection connection = dbConn.getClientConnection();
        System.out.println("connection :"connection);
    catch (Exception e)
        System.out.println("Exception Error :" + e);
    finally
         if (connection != null)
              connection.close();
    %>Only if the above steps is successful then you should proceed with DB transactions.
    Regards
    Rohit

  • Customizing portal Registration page

    Hi All,
    I am planning to customize the registration page by adding some more fields. I downloaded file and in respective jsp file I updated the fields.
    I want to store these customized values and display in my user profile page.
    There are 2 ways of storing the customized values. They are 1) adding to PCD and accessing through UME 2)JDBC connectivity.
    Please correct me if I am wrong .please provide me the code snippet for any one of the methods.

    Hi,
       To customizing and adding additional fields in registration page please refer the below thread.
    <a href="https://www.sdn.sap.com/irj/sdn/thread?threadID=443160&messageID=3602542#3602542">Registration</a>
    Thanks
    R.Murali

  • How do I compensate for only one ADDT ' tNG_config.inc.php file with many Registration pages to build?

    My dynamic site has a lot of different languages funneled into one website, using various cookies, url params, php includes, etc. all to obtain similar info in different languages. Thank you David Powers.
    It is working really well and now I’ve come to the Registration section. Okay, so registration isn’t all that hard; I could do most of it with the standard Dreamweaver set of tools. Alas, I really like much of what ADDT has to offer with welcome email messages and activation and such.
    Here’s the setup: Obviously, with many different language people, I have many different databases for them. I did that becuase we’re expecting a big audience and I really don’t want to have all those different language names in the same table. Furthermore, these tables, whereby the students will login, will also contain a lot of information about their work so again, don’t want to have one massive table. I’ve divvied them up into tables by language and I’m using those tables to keep track of them and their work.
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings.
    Here’s my situation: I notice that when I’m done with the configuring of one of the registration pages, I’m asked if I want to upload the tNG_config.inc.php page and that it has changed since the last upload. I saved a copy of the _config.inc.php and did a new registration form with the same info and when done, I compared the two _config.inc.php files. As one would guess, there is a small difference in the Connection string to the databases  $tNG_login_config["connexction"] = "connString_Ital_db".
    My problem is that I have 13 of these registration pages to do but ADDT only has the one tNG_config.inc.php. That’ll work great for the one with which it is associated, but the others will obviously break. I’ve looked through the code in the Registration pages, to find the ADDT link to the tNG_config.inc.php file hoping to rename it Italian, Spanish, etc, but the name of the file does not appear in the Registration page.  I realize that ADDT Control panel is designed for use on one site, and can then be used on others, with the changes etc. But my site seems a little unique since so many sites are actually in one.
    Has anyone whipped this problem before? I just don’t understand why there is no link in the head code of the Registration page to let me change it and to create more config files with different names. Thanks for you help!
    [Moved by moderator to appropriate forum]

    Hi Brian,
    I just tried to check all of ADDT´s "includes" files for any internal references (read: "require" or "require_once" statements) to the file "tNG_config.inc.php". So far I can only see this file referenced in the file "tNG.inc.php" (within the "$KT_tNG_uploadFileList1" array).
    So what could this mean ? Maybe you´ll have to make copies of the the original "tNG.inc.php" as well and save them as, say, "tNG.inc_ital.php" file plus make sure that these copies internally point to a different "tNG_config_ital.inc.php" file -- because it´s always the first mentioned file which gets referenced from e.g. an ADDT login page (see the "Load the tNG classes" - part)
    I want to use ADDT’s User Registration Wizard and I have looked at all the neat stuff in the Control Panel/Login Settings
    The Control Panel will always update the main "tNG_config.inc.php" file, so any further modifications will have to become manually applied to the custom files you´re creating.
    Cheers,
    Günter

  • Stuck on the 'Registration' page on iTunes when I try to update my iPod

    I started a topic before but it got archived so I'm trying again, hope thats ok.
    Ever since I've had my iPod, every time i plug it into my laptop to either update, delete songs etc I've been able to skip past the registration section but a good few months ago it decided to not let me skip the page so after many frustrating attempts I decided to just register it, I did so on iTunes and received emails from Apple to say its registered. So i thought it would be fine but it still does the same thing,
    I get the options of: Never Register, Register Later and Continue but no matter what i select it either doesn't let me move past the page or just sends me back filling out the same registration form which still doesn’t disappear when I’ve entered all my details.
    I thought if i left it for a while it might change but I’ve tried again this evening and its still the same!
    ill try and post a picture to explain...
    http://i33.tinypic.com/6i8gvt.jpg
    I'm hoping someone somewhere may know what to do? I know previously someone suggested adjusting the screen resolution but its nothing related to that.
    Thank you for any replies! It's such a frustrating situation.
    Message was edited by: Nikki2008
    Message was edited by: Nikki2008

    I never registered it until it got completley stuck on this page earlier this year, before i just clicked register later i think and then when it wouldnt let me do anything but that registration page i decided to go through all the various things to register it. So it is acutally registered now (i did that back in May) but nothing has changed since.
    If i click continue it shows me all the details i entered in May but still does not let me progress to see/edit my music...

  • How to create a Registration page in WebDynpro java

    Hi All,
    How to create a registration page in Web Dynpro java.Whatever i enter in the field of registration page should be stored in the pcd..So plz help me???
    Message was edited by: suman sahu

    Hi Suman,
        I have a similar kind of requirement , please let me know if you have got the solution for this??
    Regards,
    Ravi.

  • Query : Addition of extra fields in the User Registration page of portal.

    Hi All,
    I have a query, about adding extra fields in the new user registration page of portal.
    If you can suggest the required source files in details,inorder to incorporate two more fields.
    Say, AGE and COMPANY,with the existing fields in the same page.
    Along with this,can you please send the details of retrieving those information from backend and the backend functionalities associated with the SUBMIT button on the registration page.
    Regards,
    Sudeep

    Hi,
    Your query is divided into two parts.
    The first part is adding new fields into existing form. This feature comes under Branding of portal. Plz use the link below understanding the same and related help :
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/79/affe402a5ff223e10000000a155106/frameset.htm
    The second part is retrieving the values from backend.Here it will be the UME database. You need to develop a logon.par file and replace the same in your portal.
    Happy Customizing.
    Sukanta Rudra

  • Page numbers wrong in PDF - original Quark file ok!

    We do magazines mainly and have a Homes and Interiors publication which I have produced for over 7 years. The workflow has changed over the years and is now a PDF one as you'd expect. We output from Quark 7.31 to a postscript file then distill using our custom job option file as provided by the printers we use. Then the files are uploaded to the Agfa Delano system for them to process.
    I just had a call from them to say some of the page numbers were wrong so they removed them. The page numbers are inserted using the auto numbering in QuarkXpress and the original file is correct.
    The odd thing here is it's not that pages are mixed up - it's just the page numbers that are wrong - the content of each page is correct!! The only change we have done recently is go to Acrobat 9 which obviously uses the new Distiller too - but I am still using my Acrobat 7 printer option when I go to the Print dialogue within Quark. The magazine is 128 pages if that has any bearing and the pages with wrong numbers on them are in sequence (92-111).
    Has anyone seen this kind of thing before or are there any known issues with Distiller 9 that could cause this?

    Why don't you export the pdf from Quark using the latest pdf printer available?

  • Passing new values as extension to FM in registration page in b2c ISA..

    Hi experts,
    I have b2c application with CRM50. I have added new fields in the user(consumer) registration page.I need to pass these values to the backend. The standard function module CRM_ISA_REGISTER_CONSUMER  which has an parameter EXTENSION_IN to pass the extension data is called from UserCrm.class.
    The standard action SaveRegisterAction.class in config.xml after i click save button is called.
    I am not able to find the exact method to overwrite in which where i can add the addExtensiondata() method.
    Is anyone added new fields in the register.jsp page? Kindly help me out in this if any one has some idea.
    Also if anyone has the API for CRM50 please mail me to [email protected]
    thanks in advance.
    Nitin

    Hi Nitin,
        Could you find any code to call business object "User"  in action "SaveRegisterAction"?if you find, i think you can create new action extends from "SaveRegisterAction" ,and in the new action call method "addExtensiondata()" of object "User",after this you can get data in the function module you are mention.
    Best Regards.
    jason

  • Just got an iphone4 and itunes wont recognize it.thr registration page is blank except where you fill in answers. and it already wants me to update a new version but says network timed out. help

    just got an iphone 4 and the registration page is blank. it also says there is a new version available but says network keeps taking time out

    Hi Jen.  My daughter just compleated her nursing program and is now working as a full time nurse.  Focus and study hard and soon you will be there too.  Now to the problem at hand.  I have the same problem.  I gave up on it and satisfied myself with my iPod without the upgrade.  Reason being I've read so many posts of people having problems after the upgrade.  But I'm sure other factors are involved.  Nevertheless here is the fix most say works to solve the problem:  What ever virus protection you have installed on your computer, disable it.  Then try to install the update. After that enable the protection. I had Kaspersky, and it does it's job well. The thinking is, the virus protection is blocking the upgrade.  Hope this works.   Charlie

  • Trying to add captcha to forum registration page...

    I just put up a site and my forum is getting terrible spam so I need to add a captcha to the registration page.
    Here is the html code with my attempt to add a captcha module with the help of a support agent, it does not work for some reason.
    <h1>Forum Registration</h1>
    <div class="error">{module_error}</div>
    <div class="forum-registration">
    <h2>Existing Users - Login</h2>
    <form method="post" action="{module_pageaddress}" onsubmit="return check_RegistrationForm(this,'login')">
        <div class="form">
        <div class="item">
        <input type="hidden" name="OrderLogin_Info" />
        <label>Username</label><br />
        <input name="Username" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Password</label><br />
        <input type="password" name="Password" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <input type="submit" value="Login" class="cat_button" /><a href="#" onclick="document.getElementById('lostpassword').style.display='inline';return false;">Forgot your username/password?</a>
        </div>
        </div>
    </form>
    <form method="post" action="/LostPasswordProcess.aspx" name="catseczonelpform57982" style="display: none;" id="lostpassword">
        <h2>Forgot Password</h2>
        <div class="form">
        <div class="item">
        <label>Enter Username or Email Address</label><br />
        <input name="Username" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <input type="submit" value="Retrieve" class="cat_button" /><br />
        </div>
        </div>
    </form>
    <hr />
    <h2>New User - Registration</h2>
    <form method="post" action="{module_pageaddress}" onsubmit="return check_RegistrationForm(this,'newuser')">
        <div class="form">
        <div class="item">
        <input type="hidden" name="OrderRegistration_Info" />
        <label>Name</label><br />
        <input name="Registration_Name" value="{module_RegistrationInfo,Name}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Email</label><br />
        <input name="Registration_Email" value="{module_RegistrationInfo,Email}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>User Name</label><br />
        <input name="Registration_Username" value="{module_RegistrationInfo,Username}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Password</label><br />
        <input type="password" name="Registration_Password" value="{module_RegistrationInfo,Password}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Confirm Password</label><br />
        <input type="password" name="Registration_ConfirmPassword" value="{module_RegistrationInfo,ConfirmPassword}" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Alias</label><br />
        <input name="Registration_Alias" value="{module_RegistrationInfo,Alias}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Signature</label><br />
        <textarea type="text" rows="4" name="Registration_Signature" class="comment">{module_RegistrationInfo,Signature}</textarea>
        </div>
        <div class="item">
        <label>Enter Word Verification in box below <span class="reg">*</span></label><br />
        {module_recaptcha}</div>
        <div class="item">
        <input type="submit" value="Register" class="cat_button" />
        </div>
        </div>
    </form>
    </div>
    <!-- END .forum-registration -->
    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
    <script type="text/javascript">
        //<![CDATA[
         function check_RegistrationForm(theForm,name) {  var why = "";  if (name == 'login') {  why += isEmpty(theForm.Username.value, "Username");  why += isEmpty(theForm.Password.value, "Password");  }  else {  why += isEmpty(theForm.Registration_Name.value, "Full Name");  why += isEmpty(theForm.Registration_Email.value, "Email Address");  why += isEmpty(theForm.Registration_Username.value, "Username");  why += isEmpty(theForm.Registration_Password.value, "Password");  why += isEmpty(theForm.Registration_ConfirmPassword.value, "Password Confirmation"); if (theForm,CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image");  }  if (why != "") {   alert(why);   return false;  }    return true; }
        //]]>
    </script>

    You can do that on all forms Penny, Does keep them clean.
    It does mean that with no javascript they will never work, but in this day an age that should not be an issue.
    It looks like they were not hitting the registration url, but may have had a cached version of the page and using that to submit Penny.
    Its a good sollution - ideally for properness data- is a html5 attribute so the doctype really needs to be that. In XHML using rel="" on the form with the action in there is a good alternative as well.
    As a note Lynda's code was :
    $('.data-submit').data();
    This woud return all data
    $('.data-submit').data('action');
    Is more specifc and faster, if you had other data elements it would just fetch all or fall over.

  • ERecruitment external candidate registration pages goes Blank after SPS7

    HI All ,
    We have recently upgraded our system from NW 701 SPS3 to SPS7 .
    Information :
    Our eRecruitment setup is , External candidates will login through a
    different server and we have eRecruiting integrated with the ERP but with
    the frontend for the External Candidate on a different
    server.
    We have checked the SICF nodes (active)and Trex working fine , however when a
    candidate registration page or job search is opened the page remains
    blank .
    The logs in SM21 are as below when we tried to reproduce the same .
    RCF_UNREGSER R2 G HTTP/RFC session has been deleted following timeout
    Can you please guide us on this .
    Regards
    Rahul

    Hi all ,
    I myself resolved the issue thanks
    Regards
    Rahul Shady

  • ISE 1.3 IOS 8.1 Unsupported Browswer Error in Device Registration Page

    I recently upgraded to ISE 1.3.  We are now getting unsupported browser errors in the device registration redirect page on ipad and iphone IOS devices running 8.1.  We are running 7.6 as 8.0 was unstable with ISE1.2.1.  The device registration redirect page worked fine with these same devices in ISE 1.2.1.  Is there a work around short of turning off registration?  The "mydevices" page seams to work, but does not populate the mac addresses of the devices like the device registration page does.

    Are you using Safari or another browser? You need to use Safari as Chrome will show an error message like unsupported browser...
    I did the NSP with an iPad iOS 8.1.1 and ISE 1.3 and it worked fine...
    ISE 1.3 compatibility was just released today and says 8.0 is officially supported; does not mention 8.1:
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-3/compatibility/ise_sdt.html
    Patrick

  • Sample Registration Page creation in web center sites.

    Hi Experts
    I have one urgent requirement as I need to create user registration page where user will enter  detail and that detail will store in the back end table.I have some form created but I dont know how to save the form data into back end table.
    Registration Page
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %>
    <%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"
    %>
    <%@ page import="COM.FutureTense.Interfaces.*,
                       COM.FutureTense.Util.ftMessage,
                       com.fatwire.assetapi.data.*,
                       com.fatwire.assetapi.*,
                       COM.FutureTense.Util.ftErrors"
    %><cs:ftcs><%--
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the SiteEntry and the CSElement --%>
    <ics:if condition='<%=ics.GetVar("seid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("seid")%>' c="SiteEntry"/></ics:then></ics:if>
    <ics:if condition='<%=ics.GetVar("eid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("eid")%>' c="CSElement"/></ics:then></ics:if>
    <html>
    <body>
    <satellite:form>
        <input type="hidden" name="pagename" value="avisports/AVIArticle/SaveReg" />
    <table>
        <tr>
            <td colspan="2" >Registration Form</td>
        <tr>
            <td>Employee ID:</td>
            <td><input type="text" value="" name="employeeId" size="6" maxlength="6"/></td>
        </tr>
        <tr>
            <td>Employee First Name:</td>
            <td><input type="text" value="" name="firstName" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td>Employee Last Name:</td>
            <td><input type="text" value="" name="lastName" size="20" maxlength="30"/></td>
        </tr>
            <tr>
            <td>User Name:</td>
            <td><input type="text" value="" name="userName" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td>Password:</td>
            <td><input type="password" value="" name="password" size="20" maxlength="20"/></td>
        </tr>
            <tr>
            <td>Confirm Password:</td>
            <td><input type="password" value="" name="confirmPassword" size="20" maxlength="20"/></td>
        </tr>
        <tr>
            <td>E-Mail:</td>
            <td><input type="text" value="" name="email" size="20" maxlength="30"/></td>
        </tr>
        <tr>
            <td colspan="2">
            <input type="submit" name="submit" value="Submit"/></td>
        </tr>
    </table>
    </satellite:form>
    </body>
    </html>
    </cs:ftcs>
    And I have one back end Table
    CREATE TABLE UserRegistration
        id               INTEGER PRIMARY KEY,
        username         VARCHAR2(20),
        password         VARCHAR2(15),
        emailId          VARCHAR2(60),
        firstname        VARCHAR2(30),
        lastname         VARCHAR2(30),
        customerName     VARCHAR2(50),
        addressId        SMALLINT,
        customerrecordId SMALLINT
    I am using Registration Template to create Registration Page and there in the field am entering the values.Now on click of submit button I need to send these details to back end.and it should save into the table.Please tell me how t do it.
    Thanks
    Sam

    Hi,
    You can use HTML form tag that will target your servlet and form that servlet you can save these details into a table.
    Thanks,
    Nelash jindal

Maybe you are looking for

  • [Solved] ASUS F3Ka bluetooth doesn't work

    Hi everybody! Can anybody help me with getting bluetooth to work on ASUS F3Ka please? Here is the dmesg output: [n0ne@darkstar ~]$ dmesg | grep Blue Bluetooth: Core ver 2.11 Bluetooth: HCI device and connection manager initialized Bluetooth: HCI sock

  • How to get Bluetooth Audio gateway in Windows 7 on Mac Mini?

    I just bought the 2012 2.3 GHz Mac Mini I have installed windows 7.. I also installed Broadcom 6.0.2 driver that supports Bluetooth audio gateway , but it keeps saying Bluetooth device not found, where as the Mac mini has an inbuilt 4.0 bluetooth rea

  • Style for following paragraph only works for RH default styles?

    I'm creating my own styles in the styles and formatting pod. When you choose 'Edit' and then fiddle with the settings in the dialogue box, there is an option for "Style (style for following paragraph). This is a great feature. The problem is, it only

  • DataGrid column order - with actionscript?

    I can't seem to find an effective way to get the data laid out the way I want. Imagine this scenario: I have a single-column list of all the fields in a database table on the left, and a display table on the right (which starts with no columns in it)

  • My ipad freezed even after a complete restore

    I am having issues of my i-pad freezing or getting a blank screen while using it.  We have done a complete restoration of the system and the problem still persists.  Any suggestions?