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 TouchToneTommy 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: sgore
  • Content: Threads
  • Order by date
  1. sgore

    Nested IF statements using Excel

    I am have trouble putting together a string of nested IF's using excel Col 1 Values = ( 1, 2, 3) Col 2 Values = (any number) Col 3 Values = ( Y or N) Here is what I need to accomplish: IF COL1 = 1 IF COL2 > 20 ---> if true value equal N else value = Y IF COL1 = 2 IF COL2 > 60 ---> if...
  2. sgore

    Generic HTML Forms and Mailto Question

    I have a list box that includes four items: for example: Alpha Beta Chi Delta I want to use the selected value of the list box in the TO and/or CC section of the mailto program. I would like to append it to <INPUT TYPE=&quot;HIDDEN&quot; NAME=&quot;CC&quot; VALUE=&quot;<<APPEND LIST Value...
  3. sgore

    Windows 2k Continuously Reboots

    My Win 2k system continuously reboots after I removed an activeX control that was thought to be spawning multiple popup windows in Internet Explorer. I removed the ActiveX control by selecting the following in IE: - Tools - Internet Options - In the Temporary Internet files I selected View...
  4. sgore

    using session variables for security to view information.

    I have created a registration site that will assign users a security code. When the user logs onto the site this security code is stored in a session variable. This code is then used to when accessing different pages. The user will only be able to see information for that particular security...
  5. sgore

    Creating JumpStart Server Solaris 8

    I have used the jumpstart server from solaris in the past and found it to be a great way to install software via the network. If anyone has knowledge of this product, I have a couple questions about different methods of installing software using pre-made config files. Is there a way to install...
  6. sgore

    How Can I Remove A File From A Directory With ASP?

    I have an image database in which an image name is stored in the database. I would like to be able to remove the actual file when I remove the record from the database. Any ideas on how to remove files from a directory using ASP?
  7. sgore

    ASP or ActiveX control

    I don't know if this can be done using ASP. 1. I need a page that comes up with a control box or text area that is pre-populated with information from a data base. For example: ------------------------------ field1 field2 field3 field4 ... ... ... field1 field2 field3 field4...
  8. sgore

    Getting the right output

    I am trying to get my output to look like the example below: I have tried using two while loops but it only prints out the month and never the days. Can someone tell show me how to loop through this?? Month day time location direction day ... day ... day ... Month day ...
  9. sgore

    SQL Multiple Sort Help

    I need a quick way to sort by two seperate fields in a database. field1 = month field2 = day I would like to sort by month first and print out the month (only once) and then sort the days in that month. One I get to another month I need to repeat the process Here is the current SQL I have...
  10. sgore

    session variable output problems

    I have a validation page that will redirect the user to the forms page if they have left out any required data. <% if ErrorMsg = &quot;&quot; then Finish processing data ... else CopyFieldsToSession Response.Redirect &quot;DataInput.asp&quot; end if %> I have copied all of the fields to...
  11. sgore

    Open a new window and close an existing window simultaneously?

    When I submit a form is there a way to close the existing window and open a new window at the same time? close window <form method=&quot;post&quot;> <input type=&quot;button&quot; value=&quot;Close Window&quot; onclick=&quot;window.close()&quot;> </form> open window <form> <input...
  12. sgore

    Dynamically creating form items and passing the info to other pages

    I have a page that generates form items on the fly and appends my loopcounter to each input name i.e. <input type=&quot;text&quot; name=&quot;name<%=loopcounter%>&quot;> Can anyone tell me how I can access this form information on a seperate page? More specifically since this for loop...
  13. sgore

    Passing variables through links http://somepage.asp?[var]=something

    I am new to ASP and I am not sure how to pass variable to another asp file and then use that info to populate the other asp file. I have 2 files I am working with: players.asp player.asp (template for all players) I query a database for all players Number Name 1 joe blow 2...

Part and Inventory Search

Back
Top