Submit buttons not working....:o( - ANY IDEAS??

okay i got a form - ApplicantForm.jsp and that has two buttons on it...
'ACCEPT' and 'REJECT'
the next page - CurrentStatus.jsp - should be brought up but its just not working!
whenever a button is pressed a blank screen with just the buttons is being brought up and no changes are being made to the database.
what needs to happen is that it performs the little calculation - and the updates the value in the database...here's the code
ApplicantForm.jsp
(the buttons are declared at the top and the logic at the bottom)
<%@ page import="java.sql.*, java.net.*" %>
<HTML>
<HEAD>
<TITLE>APPLICANT FORM</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<FORM NAME = "ApplicantForm">
<DIV ALIGN = "center">
<INPUT TYPE = "submit" VALUE = "ACCEPT" NAME = "AcceptButton">
<INPUT TYPE = "submit" VALUE = "REJECT" NAME = "RejectButton">
</DIV>
<%
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:fypproject","","");
Statement st = con.createStatement();
String forename           = request.getParameter("name");
String surname           = request.getParameter("surname");
String email = request.getParameter("email");
int level = 0;
String query = "SELECT * FROM Login_Details LD, Personal_Details PD, Education E, Work_Experience WE, Skills S WHERE LD.Email_Address = PD.Email_Address AND LD.Email_Address = E.Email_Address AND LD.Email_Address = WE.Email_Address AND LD.Email_Address = S.Email_Address AND PD.Forename = '" + forename + "' AND PD.Surname = '" + surname + "' AND LD.Email_Address = '" + email + "'";
ResultSet rs = st.executeQuery(query);
if(rs.next()) {
%>
<TABLE WIDTH="760" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR VALIGN="top">
<TD WIDTH="610" HEIGHT="130">
<TABLE WIDTH="610" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD WIDTH="10" HEIGHT="192" VALIGN="top"></TD>
<TD WIDTH="600" HEIGHT="192" VALIGN="top">
<TABLE WIDTH="600" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD VALIGN="top">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="4">
          <TR>
          <TD COLSPAN="2"> </TD>
          </TR>          
<TR>
<TD COLSPAN="2"><B> <% out.println(rs.getString("Forename")); out.println(rs.getString("Surname")); %></B></TD>
</TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#000000"><FONT COLOR="#FFFFFF" SIZE="4">Personal Details</FONT></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250"><FONT SIZE="2">Title</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Title")); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250"><FONT SIZE="2">Forename</FONT></TD>
<TD WIDTH="334"><% out.println(forename); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250"><FONT SIZE="2">Surname</FONT></TD>
<TD WIDTH="334"><% out.println(surname); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250" HEIGHT="2"><FONT SIZE="2">Date Of Birth</FONT></TD>
<TD HEIGHT="2" WIDTH="334"><% out.println(rs.getString("DOB")); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250"><FONT SIZE="2">Sex</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Gender")); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="250"><FONT SIZE="2">Nationality</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Nationality")); %></TD>
</TR>
          <TR BGCOLOR="#FFFFFF">
          <TD WIDTH="205"><FONT SIZE="2">Marital Status</FONT></TD>
          <TD WIDTH="334"><% out.println(rs.getString("Marital_Status")); %></TD>
          </TR>
          <TR BGCOLOR="#FFFFFF">
          <TD WIDTH="205"><FONT SIZE="2">Do you require a work permit?</FONT></TD>
          <TD WIDTH="334"><% out.println(rs.getString("Work_Permit_Required")); %></TD>
          </TR>
          <TR BGCOLOR="#FFFFFF">
          <TD WIDTH="205"><FONT SIZE="2">Email Address</FONT></TD>
          <TD WIDTH="334"><% out.println(email); %></TD>
          </TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#000000"><FONT COLOR="#FFFFFF" SIZE="4">Education</FONT></TD>
</TR>
          <TR>
          <TD COLSPAN="2"><FONT SIZE="2">Secondary Education</FONT></TD>
          </TR>
<TR>
<TD COLSPAN="2"><FONT SIZE="2">Institution(s)</FONT></TD>
</TR>
<TR>
<TD COLSPAN="2">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="4">
<TR>
<TD WIDTH="47%"><FONT SIZE="2">Name</FONT></TD>
<TD WIDTH="37%"><FONT SIZE="2">Location</FONT></TD>
<TD WIDTH="7%"><FONT SIZE="2">From</FONT></TD>
<TD WIDTH="9%"><FONT SIZE="2">To</FONT></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="32%"><% out.println(rs.getString("Institution_Name_1")); %></TD>
<TD WIDTH="32%"><% out.println(rs.getString("Institution_Location_1")); %></TD>
<TD WIDTH="13%"><% out.println(rs.getString("Institution_From_1")); %></TD>
<TD WIDTH="23%"><% out.println(rs.getString("Institution_To_1")); %></TD>
</TR>
<TR BGCOLOR="#FFFFFF">
<TD WIDTH="32%"><% out.println(rs.getString("Institution_Name_2")); %></TD>
<TD WIDTH="32%"><% out.println(rs.getString("Institution_Location_2")); %></TD>
<TD WIDTH="13%"><% out.println(rs.getString("Institution_From_2")); %></TD>
<TD WIDTH="23%"><% out.println(rs.getString("Institution_To_2")); %></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD COLSPAN="2"><FONT SIZE="2">'A' Level or Equivalent</FONT></TD>
</TR>
<TR>
<TD COLSPAN="2" VALIGN="top">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="607">
<TR>
<TD WIDTH="18"> </TD>
<TD WIDTH="57"><FONT SIZE="2">Year</FONT></TD>
<TD WIDTH="250"><FONT SIZE="2">Qualification Name</FONT></TD>
<TD WIDTH="96"><FONT SIZE="2">Subject</FONT></TD>
<TD WIDTH="131"><FONT SIZE="2">Grade</FONT></TD>
</TR>
<TR>
<TD WIDTH="18">1</TD>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("ALevel_Year_1")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("ALevel_Name_1")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="96"><% out.println(rs.getString("ALevel_Subject_1")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="131"><% out.println(rs.getString("ALevel_Grade_1")); %></TD>
</TR>
<TR>
<TD WIDTH="18">2</TD>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("ALevel_Year_2")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("ALevel_Name_2")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="96"><% out.println(rs.getString("ALevel_Subject_2")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="131"><% out.println(rs.getString("ALevel_Grade_2")); %></TD>
</TR>
               <TR>
<TD WIDTH="18">3</TD>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("ALevel_Year_3")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("ALevel_Name_3")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="96"><% out.println(rs.getString("ALevel_Subject_3")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="131"><% out.println(rs.getString("ALevel_Grade_3")); %></TD>
</TR>
               <TR>
<TD WIDTH="18">4</TD>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("ALevel_Year_4")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("ALevel_Name_4")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="96"><% out.println(rs.getString("ALevel_Subject_4")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="131"><% out.println(rs.getString("ALevel_Grade_4")); %></TD>
</TR>
               <TR>
<TD WIDTH="18">5</TD>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("ALevel_Year_5")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("ALevel_Name_5")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="96"><% out.println(rs.getString("ALevel_Subject_5")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="131"><% out.println(rs.getString("ALevel_Grade_5")); %></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
          <TD COLSPAN="2"><FONT SIZE="2">Higher & PostGraduate</FONT></TD>
          </TR>
<TR>
<TD COLSPAN="2"><% out.println(rs.getString("Degree_Year_1")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Qualification</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Qualification_1")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Subject</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Subject_1")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Result</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Result_1")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Expected / Obtained</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_ExpObt_1")); %></TD>
</TR>
          <TR>
<TD COLSPAN="2"><% out.println(rs.getString("Degree_Year_2")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Qualification</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Qualification_2")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Subject</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Subject_2")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Degree Result</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_Result_2")); %></TD>
</TR>
<TR>
<TD WIDTH="250"><FONT SIZE="2">Expected / Obtained</FONT></TD>
<TD WIDTH="334"><% out.println(rs.getString("Degree_ExpObt_2")); %></TD>
</TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#000000"><FONT COLOR="#FFFFFF" SIZE="4">Work Experience</FONT></TD>
</TR>
<TR>
<TD COLSPAN="2"><FONT SIZE="2">Employer 1</FONT></TD>
</TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#FFFFFF" VALIGN="top">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="4">
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Employer</FONT></TD>
<TD COLSPAN="2"><% out.println(rs.getString("Employer_Name_1")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Dates</FONT></TD>
<TD WIDTH="17%"><FONT SIZE="2">From</FONT></TD>
<TD WIDTH="53%"><% out.println(rs.getString("Start_Date_1")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"> </TD>
<TD WIDTH="17%">To</TD>
<TD WIDTH="53%"><% out.println(rs.getString("End_Date_1")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Role</FONT></TD>
<TD COLSPAN="2"><% out.println(rs.getString("Role_1")); %></TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD COLSPAN="2"><FONT SIZE="2">Employer 2</FONT></TD>
</TR>
<TR>
<TD COLSPAN="2" BGCOLOR="#FFFFFF" VALIGN="top">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="4">
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Employer</FONT></TD>
<TD COLSPAN="2"><% out.println(rs.getString("Employer_Name_2")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Dates</FONT></TD>
<TD WIDTH="17%"><FONT SIZE="2">From</FONT></TD>
<TD WIDTH="53%"><% out.println(rs.getString("Start_Date_2")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"> </TD>
<TD WIDTH="17%">To</TD>
<TD WIDTH="53%"><% out.println(rs.getString("End_Date_2")); %></TD>
</TR>
<TR>
<TD WIDTH="30%"><FONT SIZE="2">Role</FONT></TD>
<TD COLSPAN="2"><% out.println(rs.getString("Role_2")); %></TD>
</TR>
</TABLE>
</TD>
</TR>
          <TR>
<TD COLSPAN="2" BGCOLOR="#000000"><FONT COLOR="#FFFFFF" SIZE="4">Other Skills</FONT></TD>
</TR>
     <TR>
<TD COLSPAN="2" VALIGN="top">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="807">
<TR>
               <TD COLSPAN="2"><FONT SIZE="2">Foreign Languages</FONT></TD>
               </TR>
               <TR>
<TD WIDTH="57"><FONT SIZE="2">Language</FONT></TD>
<TD WIDTH="250"><FONT SIZE="2">Proficiency</FONT></TD>
</TR>
<TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Language_1")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Language_Prof_1")); %></TD>
</TR>
                              <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Language_2")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Language_Prof_2")); %></TD>
</TR>
                              <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Language_3")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Language_Prof_3")); %></TD>
</TR>
               <TR>
               <TD COLSPAN="2"><FONT SIZE="2">IT Skills</FONT></TD>
               </TR>
               <TR>
<TD WIDTH="57"><FONT SIZE="2">Skill</FONT></TD>
<TD WIDTH="250"><FONT SIZE="2">Proficiency</FONT></TD>
</TR>
               <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Skill_1")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Skill_Prof_1")); %></TD>
</TR>
               <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Skill_2")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Skill_Prof_2")); %></TD>
</TR>
               <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Skill_3")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Skill_Prof_3")); %></TD>
</TR>
               <TR>
<TD BGCOLOR="#FFFFFF" WIDTH="57"><% out.println(rs.getString("Skill_4")); %></TD>
<TD BGCOLOR="#FFFFFF" WIDTH="250"><% out.println(rs.getString("Skill_Prof_4")); %></TD>
</TR>     
               </TABLE>          
               </TABLE>
          </TABLE>
     </TABLE>
</TABLE>
<%
if(request.getParameter("RejectButton") != null) {
level = Integer.parseInt(rs.getString("Level_ID"));
level = 4;
String levelString = Integer.toString(level);
session.setAttribute("email", email);
session.setAttribute("level", levelString);
response.sendRedirect("CurrentStatus.jsp");
else if(request.getParameter("AcceptButton") != null) {
level = Integer.parseInt(rs.getString("Level_ID"));
if(level < 4) {
level = level + 1;
String levelString = Integer.toString(level);
session.setAttribute("email", email);
session.setAttribute("level", levelString);
else {
level = 4;
String levelString = Integer.toString(level);
session.setAttribute("email", email);
session.setAttribute("level", levelString);
response.sendRedirect("CurrentStatus.jsp");
st.close();
con.close();
%>
</FORM>
</BODY>
</HTML>
CurrentStatus.jsp
<%@ page import="java.sql.*, java.net.*" %>
<HTML>
<HEAD>
<TITLE>APPLICANT FORM</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<%
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con = DriverManager.getConnection("jdbc:odbc:fypproject","","");
Statement st = con.createStatement();
String level                = (String)session.getAttribute("level");
String email = (String)session.getAttribute("email");
String query = "UPDATE Login_Details SET Level_ID = '" + level + "' WHERE Email_Address = '" + email + "'";
st.executeUpdate(query);
%>
<DIV ALIGN = "center">
<H2> Candidate status has been moved to: <% out.println(level); %></H3>
</DIV>
</BODY>
</HTML>
<%
st.close();
con.close();
%>
any ideas at all??? please??! :o(

instead of using a submit input try using two button inputs, names can be the same.
<input type='button' value='accept' name='aButton' onClick='js_func("accept")'>
<input type='button' value='reject' name='aButton' onClick='js_func("reject")'>
write a javascript function and catch the value sent and redirect to a controller (a jsp or a servlet) which would re-route the request to your bean
function js_function(theValue)
window.location = "controller.jsp?action=" + theValue
this is how you can make a button act as a submit button. i guess this is your best bet.
cem.

Similar Messages

  • Hi all, Since I updated to Mavericks I am having trouble with Safari showing all the buttons/clickable options, but they are gray and will not work. Specifically, the Trash Can/Delete and the "Move to" folder button simply do not work. Any ideas?

    Hi all, Since I updated to Mavericks I am having trouble with Safari showing all the buttons/clickable options, but they are gray and will not work. Specifically, the Trash Can/Delete and the "Move to" folder button simply do not work. Any ideas?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Adobe creative cloud product online help not working. Any idea what is the reason ??

    Adobe creative cloud product online help not working. Any idea what is the reason ??
    I have to manually copy pdf file to open help for all suite....

    Please try another browser, if still it is not working, check the internet connectivity http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    In case the issue is still not resolved, do contact Adobe Support.
    Regards
    Rajshree

  • I've been using the speaker feature for dictation. Suddenly it's not working. Any ideas?

    I've been using the speaker feature for dictation. Suddenly it's not working. Any ideas?

    Please follow this article:
    http://support.apple.com/kb/TS1567
    it should help
    let me know

  • I am trying to change the date on an imported home video clip. I entered 9/7/2012 and got 6/9/0339! I checked modify original file, but it is not working. Any ideas?

    I am trying to change the date on an imported home video clip. I entered 9/7/2012 and got 6/9/0339! I checked modify original file, but it is not working. Any ideas?

    Are you using the Adjust Date and Time option or the Batch Change option?  If it's the former try the latter.  If you get the same results  launch iPhoto with the Option key held down and create a new, test library.  Import  the same video file and check to see if the same problem persists.
    OT

  • I cannot access facetime or messages on my Ipod touch anymore.  I have restarted, restored and it still is not working..any ideas?

    I cannot access facetime or messages on my Ipod touch anymore.  I have restarted, restored and it still is not working..any ideas?

    It asks for my apple ID and password when I try to access facetime or messages
    .  After I enter it brings me to an email to select-then verifies and brings me back to enter ID again. 

  • I have a 4th gen iPod touch that won't power up! I tried all the traditional stuff. I want to know how to tell if the battery is good. itunes see's the ipod in recovery mode. Tried dfu mode and did not work. Any ideas?

    I have a 4th gen iPod touch that won't power up! I tried all the traditional stuff. I want to know how to tell if the battery is good. itunes see's the ipod in recovery mode. Tried dfu mode and did not work. Any ideas? I can hear the PC beep when plugging it in! I suspect a bad battery and trying to charge it ina wall charger made it hot!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order. The appointment is free.
    Apple Retail Store - Genius Bar       

  • Forms - submit button not working

    A client asked me to create an eflyer with a registration form included to be emailed out. I added form fields to the form page and an email submit button. Works fine on my Mac - opens Entourage correctly addressed and with the xfdf file attached. Tested on Parallels Desktop running Windows XP Pro and this seemed to work too. However when my client tested it on her PC, when she clicked on the submit button nothing happened. It works for her on the web but understandably she want's it to work when people receive the PDF as an attachment to an email. She uses Outlook as her email client.
    Any thoughts? Many thanks.

    Mike
    Thanks for your comment. I've sent a new PDF to the client with the extended rights turned on and this still doesn't work, as you thought. I know I've read about how unreliable emailing PDF forms can be but I wanted a simple solution on a document that my client wants to email to her contacts. Maybe it's just not a good idea to start with though you'd think that seeing as how adobe have added the feature it might just work! When I tried on Windows running on my Mac when I clicked send it asked me whether I wanted to use local or web-based email which implied you could use either? (I don't have an email client currently set up under windows as I only use it for opening the odd PC only file that clients send me which is I guess why it asked the question rather than chaining straight into an email window).
    I'm attaching the document in question. The form is on page 3.
    Many thanks for your support

  • CRM Survey on Web - Submit button not working.

    Hi Gurus,
    We have created a Survey in CRM_Survey_suite. The Problem is, when we send the survey with one Question (mail goes out with a link, user click on the link and link take them to our QA Server BSP Page), the submit button is working but when we send survey with more then one question the submit button is not working (When we click, nothing happens), however the RESET button is working fine.
    Another interesting thing is, surveys with multiple questions are working fine in our Dev environment (The initial setup in dev was done by another consultant who is no longer with us).
    I am not an expert in this area and i have checked every single config that i know in DEV and in QA to my knowledge and the config is identical.
    Pls help.
    Thanks
    Nadeem.

    Hi,
    We are on CRM 4.0 with following support packs.
    SAP_BASIS     620             0054    SAPKB62054
    SAP_ABA             620             0054    SAPKA62054
    BBPCRM             400             0009    SAPKU40009
    PI_BASIS     2004_1_620     0010     SAPKIPYI5A
    ST-PI             2005_1_620     0003     SAPKITLQG3
    CRMIS             400             0004     SAPK-40004INCRMIS
    ST-A/PI             01G_CRM400     0000          -
    Regards.

  • Interactive PDF Form Submit Button Not Working

    Hi there,
    I created an Interactive PDF in InDesign with a form included in the document. When I export as an interactive PDF my Adobe Reader will allow me to fill out the form no problem, however, when I click submit to connect the form to my email, it says "operation not permitted". Any ideas on how to fix this issue?

    Reader prior to version 11 cannot save the document unless it is Reader-enabled, which you can do with Acrobat. Exactly how depends on which version you're using. In Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools

  • After installing Snow Leopard, my external apple keyboard does not work. Any ideas?

    After installing Snow Leopard (v. 10.6.3), my external Apple keyboard no longer works. Any ideas?

    The laptops are called MacBooks there really is no MacPro laptop.
    MacBook Pro Apple Support -
    MacBook Pro specs 17-inch model
    MacBook Pro

  • Submit button not working on ipad

    We have an interactive form and a submit button where it posts the copy of the PDf file to the server(URL). It works fine on Desktop; however when I open the file on iPad, and click on the buttons, they do not trigger any event(it does not work).
    Is it a known issue? Any workaround for this?

    Submit form actions don't work with Reader for iOS unless the form was enabled for use with Adobe's FormsCentral service. Other PDF viewers for iOS support the submit form action or the submitForm JavaScript method.

  • Created "submit" button not working with Reader

    I have created a submit button that will submit an email based off dropdown menu selection.  While it works great on my computer (Pro).  A user with Reader (9.0) can fill out everything until the (java created) submit button.  The user computer hangs...  Any ideas of what the issue could be?
    Thanks,
    Jo

    Thanks for the feedback, I figured it out.  Silly me, didn't have the form user-enabled.
    Jo

  • Submit button not working in IE

    Hi there
    I have a submit button that is not working in IE 7 is there anyone that can help there. The username and password are both admin.
    http://www.plusonetesting.co.uk/login.php

    And the other 12 errors found here http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.plusonetesting.co.uk%2Flogin. php
    Ben

  • Post Migration from SP2010 -Attach File Button not working in any list new/edit forms

    Hi,
    We have migrated the SharePoint 2010 farm to Sharepoint 2013 on last saturday and we are noticing an interesting issue after the migration .
    On any custom list on any web application ,When we create a new item,if we click on attach file button in the ribbon,nothing shows up on the screen.
    In the browser Dev Tools its showing an error message as "Cannot read Property style of null".
    This is happening on a javascript (form.debug.js) on line No : 5276
    (document.getElementById("partAttachment")).style.display = "block";
    There is no element rendered in html with id "partAttachment",which is causing this error to happen.
    Solutions tried are
    1) Modified the List Advanced Settings to disable and enable the attachments ,which did not work
    2) Ran the Sharepoint Configuration wizard which did not fix 
    3)Tried reset the site definition for all pages in the site from site settings
    4) Deactivated and activated all the activated features in the site collection
    Its an OOB List New Form,no customizations has been done.
    Similar error occurring with List Edit form as well
     when you click on the List Item in the List default view when you navigate to the list and when you click on attach file,a popup dialog to upload attachments appearing,However its not working when you
    navigate into the list item and tried to upload attachment.
    Please help if any Solutions / thoughts 

    Hi Christopher,
    Thanks for your reply,
    Farm Information
    OS: Windows Server 2008 R2 SP1 Enterprise
    SQL: SQL 2008 R2 SP2 
    SP -SharePoint 2013 with no CU applied
    Method,we used is restored the content DB from SP2010 and attaching to SP2013 SQL Server
    Site Collection is in 15 mode
    It happens on new site collection even though its not migrated site.
    Server is 16GB RAM 8Core Processor
    If we create a new form from designer,attach file link is working
    OOB New form.aspx is having List Form webpart
    Custom New Form.aspx creaed with designer has data form webpart
    if we create a new sharpoint site collection in 2010 mode,its working fine without any issues
    Interestingly,all the javascript files loading were debug.js,Not sure how its loading all debug.js files

Maybe you are looking for

  • List View like Library

    Hello All, Can we create a list view similar like Library Palette. If so which widget needs to be added on the palette. Basically we would like to show multiple columns as in library palette and allow the user to select one or multiple cells from the

  • Original files not found, please help.

    I am running iTunes 8.0.1.11, and I have about 11.5 gigs or so of music. Today I fired up iTunes and started skimming through songs like I often do, only to start playing a song and have the "original file not found" message pop up. I took a deeper l

  • How can I find out which Contact list in my outlook that iCloud is syncing with?

    How can I find out which Contact list in my outlook that iCloud is syncing with?

  • Event viewer : The type initializer for 'advancedsetttings' threw an exception

    I am recieving a " The type initializer for 'advancedsetttings' threw an exception" error when i try to view subscriptions in event viewer.  The machine is a windows 2008r2 server.  It was working before but just stoped working.  I tried loging in as

  • Simultaneous Control Using GPIB / DAQ

    I am working on a project that is a continuation of a previous project. It involves controlling the temperature and pressure in two vacuum chambers. The original project controlled only one chamber and the original code contained a number of global v