User Profile

Collapse

Profile Sidebar

Collapse
JCCDEVEL
JCCDEVEL
Last Activity: Mar 13 '08, 06:48 PM
Joined: Jun 26 '07
Location: Massachusetts
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Hi Ronald,

    I'm skeptical about the 'chargetotal' field as well. I am assigning it in Javascript and used an 'alert" to see if it displayed the value. It does, but I'm not sure it works on the form itself

    She actually wants the values posted to the payment_pg.php page

    Thanks,

    JCC...
    See more | Go to post

    Leave a comment:


  • OK, we'll start over.....

    This site is a place for a customer to enter certain information to request services. The services have fees associated with them and they are based upon location. So, I have a bunch of Javascript that grabs the inputted city values and ends up calculating one fee amount (this is working fine).

    When the customer clicks submit, three things should happen:
    1) javscript calculation is...
    See more | Go to post

    Leave a comment:


  • Thanks for your input. Forgive my struggle with this, but this is completely out of my comfort zone and am trying to help a friend. So, it should like this?:

    [PHP] <form name="form1" method="post" action="/cgi/formmail" header("Locatio n: ".$_POST['redirect'].$_POST['chargetotal']);
    >[/PHP]

    Then I assume I will need to add a "GET" to the payment page?...
    See more | Go to post

    Leave a comment:


  • Hi,
    This is the block that has all the form actions:

    Code:
                 
     <form name="form1" method="post" action="/cgi/formmail">
    <input type="hidden" name="required" value="AttyName, AttyStreet, AttyCity, AttyState, AttyPhone">
           <input type="hidden" name="missing_fields_redirect" value="http://www.website.com/v3/fail.php">
    ...
    See more | Go to post

    Leave a comment:


  • Page Need to pass calculated value to redirect page

    Hi All,

    I'm trying to do the following:

    1) ON a php page, calculate fees based upon user entires. I'm calculating it in a javascript function and that is working well. However, I need to take that calculated amount and pass it to a new page on redirect. something like this:

    [PHP] <input type="hidden" name="redirect" value="http://www.pagename.co m/v3/payment_pg.php? FeeCalcTotal="...
    See more | Go to post

  • JCCDEVEL
    started a topic Can't find project or library - Access 2003

    Can't find project or library - Access 2003

    Hello All,

    I am trying to introduce an update to a MS Access Data Project. It works fine on my pc but when I try installing it on my testers pc's, I get this error:

    Can't find project or library
    When I debug it on user's pc, the offending line is this:

    Public srv1 As SQLDMO.SQLServe r

    I went into the references box and can see that the reference is missing and I can repair it at...
    See more | Go to post

  • Thank you so much for your help. With a little tweaking, this did the trick!...
    See more | Go to post

    Leave a comment:


  • JCCDEVEL
    started a topic Sql Server Query - won't display zero returns

    Sql Server Query - won't display zero returns

    Hello,

    I'm writing a basic query in Sql Server Mgmt Studio 2005. Basically, I'm trying to query a table to get all "issues" reported in a month by "Project Category". The query is working fine except that I cannot get it to display entries for projects that have zero issues for that month - so it comes out blank. I'm pretty sure I need a left join (or something like that) for this, but no matter what I try, those...
    See more | Go to post
    Last edited by debasisdas; Sep 27 '07, 10:40 AM. Reason: Formatted using code tags

  • JCCDEVEL
    started a topic MS Access Data Project Filter Issue (Access 2003)

    MS Access Data Project Filter Issue (Access 2003)

    Hi All,

    I am working on a legacy MS Access Data Project. I have a form that displays results from a view. The user would like to be able to occasionally filter the results by a record value. Sounds simple doesn't it? We're having a tough time with it. When running it in design mode, I am able to right-click on the field and then enter the value. When we run it, the right-click capability is gone. We googled it and found something...
    See more | Go to post

  • Jared,

    Thanks again for your help. After a lot of research, we discovered that at some point in the past, somebody started the work to move to another upload product. For some reason the half-written code that has been there for awhile started to interefere with the page's processing. I ended up commenting out the offensive code and we are back in business.

    I truly apprecuate the time you took to help me out!...
    See more | Go to post

    Leave a comment:


  • Hi Jared,

    Thanks for your reply. Without a doubt, issues that happen "intermittently " are the most frustrating to troubleshoot!

    I changed Request.form to just request, but got the same results. I added your code and as expected all the .form elements are blank.

    The page takes a number of the form elements and posts them to a database via a stored procedure, then the upload occurs
    ...
    See more | Go to post

    Leave a comment:


  • ASP Issue with form that posts data to databse and uploads image file

    Hello,

    We have a small program that allows licensees around the world to submit requests to our home office. They complete the request on an ASP form (with an HTM page) over a https connection. One of the required fields is for upload. Starting in the last week, the page has begun to "misbehave" . I was able to recreate the problem and it looks like the form is not able to pick up the "request.fo rm" statements....
    See more | Go to post

  • Thank you so much for your help. This what I ended up using:

    if (!((document.lo gin.NewUserPass word.value.sear ch(/[a-z]+/) > -1) && (document.login .NewUserPasswor d.value.search(/[A-Z]+/) > -1) && (document.login .NewUserPasswor d.value.search(/[0-9]+/) > -1) && (document.login .NewUserPasswor d.value.search(/[^a-zA-Z0-9_]+/) > -1)))


    and it is working well

    ...
    See more | Go to post

    Leave a comment:


  • Thanks for your speedy reply! It is syntax I borrowed from a site that has lots of javascript examples. The specific one I borrowed from looked like this:

    var re = /[$\\@\\\#%\^\&\* \(\)\[\]\+\_\{\}\`\~\=\ |]/
    if (!re.test(str)) return false;

    I thought that "test" was a function. I'm open to doing it another way, just thought that this looked pretty straightforward !

    The funny things...
    See more | Go to post

    Leave a comment:


  • JCCDEVEL
    started a topic Need a fresh set of eyes on a Javasript edit

    Need a fresh set of eyes on a Javasript edit

    Hello All, I'm getting frustrated with the syntax of a jscript edit I'm using on a VBScript page. Here is what I have:

    var re = /[$\\@\\\#%\^\&\* \(\)\[\]\+\_\{\}\`\~\=\ |]/;
    if (!re.test(docum ent.login.NewUs erPassword.valu e))
    {
    AlertMessage += "Invalid entry! You must also use nonalphanumeric characters!";
    focusfield =document.login .NewUserPasswor d;
    ...
    See more | Go to post
No activity results to display
Show More
Working...