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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: axsom1
  • Content: Threads
  • Order by date
  1. axsom1

    Win98 client mapping to win nt4 shares

    I have some windows 98 machines that I want to have map to a few shared folders. I would like to map them to a subfolder directly, but no matter what it only maps to the root folder. e.g \\server\share\folder will map to \\server\share. Does anyone know why this is? Thanks, John Axsom
  2. axsom1

    Help with an array problem

    I'm spinning my wheels here... I'm having a problem with the code below. I'm successfully breaking out the comma delimited fields into their own arrays for database inserts (the data is not exactly the same as the table structure). That all works fine and dandy, my problem is I wan't to do a...
  3. axsom1

    Problem with DIV tag and style null or not object error

    I keep getting the error that document.safetyForm.elements.AO.style is null or not an object. Can anyone shed some light as to why I am getting this? The code is as follows (sorry it's so long, I wanted to include all the code): <?php //Ensure this file is being included by a parent file...
  4. axsom1

    T_CONSTANT_ENCAPSED_STRING Errors

    Does anyone notice why I am getting the following error with the code below: Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in D:\Web Sites\safety\queries\emerg.query.php on line 23 (marked below with '-->') <? //Report Title $title = "Emergency Preparedness"; //Define text...
  5. axsom1

    Is there a way to reset an individual form element?

    I have an application that uses a single form but uses DIV tags to display different sections with tabs. I would like to be able to clear only certain form elements when they click on a different radio button. Below is a little snippet of what I have: <tr> <td style="border-right: 1px...
  6. axsom1

    Changing the contents of a drop down list box?

    Is there a way for me to select a radio button and change the contents of a list box? I currently generate my list box with some php, but I would like to dynamically rebuild the list based on the selection of a radio button without refreshing. I was thinking of loading an array for each object...
  7. axsom1

    How do I compare numbers in a natural order

    My problem is our application requires client certificates. All I'm doing is retrieving the number of days left on the certificate and passing that into this little script. <% dim cert_days cert_days = DateDiff("d", Now, Request.ClientCertificate("ValidUntil")) %> <script...
  8. axsom1

    Parse text file - Am I looking in the right spot?

    Hi, I have been given the task of taking a text file that is generated daily, and removing some garbage text out of it. I really don't know where to begin. I originally thought PHP would be my best source, but don't see how I can remove blocks of text, say from line 1-70. Any ideas...
  9. axsom1

    Blinking text for x amount of time?

    Hi all, javascript newb here. I was wondering how I can get some text to come up and blink when a page is first loaded. Now, I want this text to only blink for say 15 seconds then go away. How is this accomplished?? Thanks, John
  10. axsom1

    session state lost - why?

    Hi all, does anyone have any idea why in my application the session state is being lost. Currently my application is in a frameset, with all the action taking place in the main frame. My page is just a simply add user page that when it is submitted it is submitted to itself and runs some code...
  11. axsom1

    What am I missing in the following code...

    Here is the code that I just don't get what I'm missing. With this code in my function, anything below it does not get processed... if (document.form1.Ed_HS_Graduate[1].checked && !document.form1.Ed_Ged[0].checked && !document.form1.Ed_Ged[1].checked) { alert(&quot;Please tell us if you...
  12. axsom1

    If then statement embedded in html

    I keep getting the &quot;expected end of statement&quot; error with the following code. strHTML = strHTML & &quot; <TD><P class=&quot;&quot;small2&quot;&quot;><FONT color=&quot;&quot;red&quot;&quot;><B>*</b></font>Are you younger than 18 years of age?<BR><input...
  13. axsom1

    Radio and Check box Selections passed across multiple pages

    I tried searching but had no luck with finding an answer. I know this is a silly question, but for the life of me can't think of what I need to do to get this to work. I currently have a form with radio and check boxes, when the user selects the radio and check boxes and clicks submit I would...
  14. axsom1

    Form validation and radio group focus

    I have an online employment application I am creating for the office. In the application there are yes no questions that I have used radio buttons for. For some reason I can't get the script to focus on the radio group. Here is a simple snipet of what I am doing. <script...
  15. axsom1

    CAPICOM and asp pages

    Does anyone have any experience with coding asp pages and using CAPICOM to extract certificate information from the certificate stores? Here is a snippet of my code, but I keep getting an error with the find: <body> <% Set st = CreateObject(&quot;CAPICOM.Store&quot;) Set certs =...
  16. axsom1

    VPN through two NAT firewall's

    Is this possible? If so, where am I going wrong at? Here is out setup: We have a full T1 connected to a cisco 2600 series router. The router is connected to a Sonicwall Pro 300. From there it is NAT'ed to our LAN which is 127.x. Now, as the years have passed we have needed to expand, and...
  17. axsom1

    Is it possible to hide a portion of the following code:

    Here is a copy of some code I would like to partially hide. <script language=&quot;JavaScript&quot;> <!-- if ((navigator.appName == &quot;Microsoft Internet Explorer&quot;)&&(navigator.platform != &quot;MacPPC&quot;)) { document.write(&quot;<OBJECT...
  18. axsom1

    displaying only x amount of records per page

    How do I display only a certain amount of records? Say for example I query the database and it returns 35 records. I want to be able to say the search returned 35 records, displaying 1-10. Then having a navigation button to let them iterate through the results 10 at a time. I'm familiar with...
  19. axsom1

    real time counter using server time

    I have an application where the user logs in and the time is stored as a session. What I need to be able to do is countdown 30 minutes from that time for the page to be redirected. It cant be affected by a user clicking refresh. Im stuck and have been toying with all sorts of different combos...
  20. axsom1

    Javascript that compares and countsdown time

    Here is what Im trying to accomplish. A user logs into our webpage and based on their login will be granted 30 minutes or 60 minutes of web time. I would like to be able to show on the screen the time they have left in a little countdown. I currently capture their login time and would also...

Part and Inventory Search

Back
Top