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 wOOdy-Soft 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 toddsalcedo

  1. toddsalcedo

    Form Field Focus

    This is the code for the page reload: function refreshwindow1(){ var form = document.forms[0]; var pageurl = "<%=Request.ServerVariables("URL")%>"; var servername = "<%=Request.ServerVariables("SERVER_NAME")%>"; var sitepath = "<%=Request.ServerVariables("PATH_INFO")%>"; var query =...
  2. toddsalcedo

    Form Field Focus

    I have a form with numerous fields, some of which when selected cause other form fields to appear. When the page relods it goes back to the top of the form. Does anyone know of a way to force it to focus on the field that was last selected? I've tried numerous things and can't seem to get it to...
  3. toddsalcedo

    IE Content Advisor

    Thank you, that's exactly what I was looking for.
  4. toddsalcedo

    IE Content Advisor

    My apologies if this does not belong here, I didn't know where else to ask this question. I have a coworker whose kid turned on the Content Advisor in IE and can not remember the password. Does anyone know of a way that this can be changed, or will he just need to try and uninstall/reinstall IE?
  5. toddsalcedo

    IE File Download Prompt

    I have a user who has unchecked the box on the IE file download prompt and now Excel files only open in the browser. I need to reset it so it prompts her to open or save, but for the life of me cannot find where to reset it.
  6. toddsalcedo

    Missing Date

    FYI - the specific lines I am referring too are: LoadNodeText oProject, "DateApplication", XMLDateFormat(rs("ProjectInitiationDate").Value) LoadNodeText oProject, "ExpectedCompletionDate", XMLDateFormat(rs("ProjectClosureDate").Value)
  7. toddsalcedo

    Missing Date

    The code below pulls data from a SQL Server database and then generates an XML file. For some eason the dates from the database d not come through but everythingse does. Is it apprarent at all from this code as to why it isn't working? <% Option Explicit Dim DataConn, cmdDC, rsDC Dim...
  8. toddsalcedo

    Locking ASP Links/Forms

    I have a .asp page using VBScript that is fed data from a SQL Server db. Users can bring up a table of data on the screen, then click a link to go into the record and update it. What I need to be able to do is make it so if one person is logged in that no data can be edited by anyone else, but...
  9. toddsalcedo

    ASP to Excel Problem

    I have an ASP search page that contains a button that allows the user to download the results of the database search to an Excel file. The Excel file contains two date columns, but they will not properly sort nor will they format into Date type columns. They are datetime columns in the...
  10. toddsalcedo

    ASPUpload - Appending File Names

    We have ASPUpload installed on the servers here as our standard. What I need to get it to do is to append the file name with an unique identifier, the ID from the record in the database that it is associated with. Does anyone have any ideas on where to look for this?
  11. toddsalcedo

    Column Sort Problem

    I am using the code located here http://tek-tips.com/faqs.cfm?pid=216&fid=3599 and it works quite well. However, once the data in the table grows to much it causes and error in IE, in this case the table has 379 records in it. The error message is "A script on this page is causing Internet...
  12. toddsalcedo

    Check Date

    Thank you, I haven't had much of a chance to mess with it, but I'll give it a shot.
  13. toddsalcedo

    Updating drop down menu when previous menu is updated

    This is how I do it, using Javascript to refresh the window and call certain data from the database to populate a second drop-down menu based upon the first drop-down menu choice. I hope it makes sense. JAVASCRIPT function refreshwindow1(){ var form = document.forms[0]; var...
  14. toddsalcedo

    Check Date

    I have some Javascript that checks for the proper date format, but I would also like it to check to see if the date entered is not greater than the current day (today. Any ideas on how I can enhance this to do both at once? <script LANGUAGE="javascript"> <!-- Begin function datecheck(x) {...

Part and Inventory Search

Back
Top