Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RoseDa

  1. RoseDa

    MSWord 2K and XP, Hyperlink to secure site

    I have a MSWord document that has several hyperlinks to acrobat (pdf) files on a secure server that requires personal certificates. When using Word 2003, after selecting the hyperlink a dialog box asks which certificate to use and IE opens the site and then the acrobat document. :-) In Word...
  2. RoseDa

    Reseting only changed form var

    Still did not work with the syntex correction. The script would reset the first ni name that made Gtotal more than 100, not the one the form was using. [sad] I did take the concept and did some tweaking. I added a condition to the function statement and then made the form pass the element...
  3. RoseDa

    Reseting only changed form var

    I cut and pasted the code in and it does not work. The warning never gets activated, because Gtotal never gets to 110. I think I need to explain a little more. The selections for each name in the form is nothing to 100 in increments of 10. So when someone changes the form it updates the...
  4. RoseDa

    Reseting only changed form var

    I have a javascript that adds up inputs from a form. When the total is >= 110 it sends an alert that the total can not be over 100. This all works, but after the alert the form option stays at the value that put the total over 100. How do I only reset the variable that is changing, not all...
  5. RoseDa

    Some event attributes no longer valid in XHTML

    I am converting some of my HTML 4 webpages to XHTML. For some reason XHTML does not allow the body tag to have the OnLoad attribute. <body OnLoad="function()"> Also the onclick attribute is not valid for the submit button. <input type="submit" name="submitbutton" onclick="validate();return...
  6. RoseDa

    Script works in IE, but not NS or Firefox?

    I made the following script to add several drop down selections to get a total and then place the total in the document. //Calculates the total of all selections function GetTotal() { //get variables from form and makes them integers var Ami = parseInt(document.voting.Ami.value)...
  7. RoseDa

    If statement does not function correctly

    Chessbot, Thank you for the quick response, but the leading "<" is not part of the code. For some reason by placing the code in code tags it adds the < to the front of it. The if statement is: if (Gtotal > 100) {"alert('Total can not be more than 100!');"} else {document.week1.total.value =...
  8. RoseDa

    If statement does not function correctly

    I am very new at Javascript, so this may be to simple for most. Sorry, but I am trying to learn this stuff. I have a form that has several drop downs for users to select a number from 0 - 100. Example: <select name="Ami" onchange="GetTotal()"> <option value=0>0 <option value=10>10...
  9. RoseDa

    Admin using SSH to non-standard port

    Currently I have a webserver that uses most of the standard port. Is there a way to use SSH to a non standard port to connect to the admin console of the PIX? I have management set to inside, and SSH is enabled and working from inside. I set a static route from the non-standard port to the...
  10. RoseDa

    PIX web and ftp config

    Have you gotten the port forwarding to work? I am fairly new at PIX configuration, but I see a few things wrong. To get port forwarding you need a static route and a access-list or conduit. The statics you have in your configuration state: static (outside,inside) tcp interface ftp 192.168.1.2...
  11. RoseDa

    No traffic after changing to static IP

    Thank your for the help. Yours, Dale Rose
  12. RoseDa

    No traffic after changing to static IP

    I know this has probably been asked before, but I could not find it. I need to set the outside interface on my PIX 501 to a static IP, vice using factory setting of dhcp. Eveytime I try to change the outside to static I lose traffic to the inside. Here is what I have done so far: I use the...

Part and Inventory Search

Back
Top