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 SkipVought 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: nmath
  • Order by date
  1. nmath

    Some ASP forms not working on Server 2003

    We just had our servers upgraded to Microsoft Server 2003 from Microsoft Server 2000. We have a few hundred ASP scripts that we run on the server that also use SQL Server 2000. Most of the scripts are running fine on the new server, but some of them seem to not be able to post to the server. I...
  2. nmath

    ASP to Excel Problem

    I have an ASP script that is querying a DB then rendered the results in Excel. The problem is that one of the DB field values that is being returned is "<= 5". This value is not being printed in the excel sheet because I am guessing it is reading it as a formula?? Is there a way to make ALL...
  3. nmath

    Save Files to Server

    I inherited a DB where files were stored in a SQL Server 2000 database as images. I want to pull these out of the database and save them to the server as physical files. I am having trouble figuring out a way to do this. Now I can pull the data out of the DB and get it to open on my PC, but all...
  4. nmath

    Include Images in Word Download

    I am using Response.ContentType = "application/msword" to download my asp page into Word. The download process works fine but when I open the .doc file the image is missing. The images that are missing are within the html <img> tag of the .asp page. Does anyone know of a way to force the images...
  5. nmath

    Put 24hr time in SQL Datetime field

    Thanks so much everybody! The convert in SQL did the trick!! Thanks again!!
  6. nmath

    Put 24hr time in SQL Datetime field

    I have an input box that is getting set with javascript to be the current date/time on the clients computer. When the form is posted the date and time is being stored in a DateTime field in SQL Server 2000. The time that shows up in the input box with javascript is in 24hr time which is what I...
  7. nmath

    ASP to PDF suggestions

    Has anyone used ASP-PDF. http://www.asp-pdf.com/ If so did you like it?
  8. nmath

    ASP to PDF suggestions

    Thanks! Do they both support images fairly well? Which one is the easiest to use?
  9. nmath

    ASP to PDF suggestions

    I am trying to allow users to view the results for an ASP page in PDF. I am generating my pages using ASP and SQLServer 2000. Does anyone use a PDF converter that they really like? Or have suggestions on how to convert with out having to purchase software? Thanks in advance for the suggestions!!!
  10. nmath

    Add breaks in select box options

    Does anyone know if there is a way to have a "return" in a select box? I tried <option>Test<br>This</option> and it simply ignored the <br> Does anyone have any ideas?? Thanks in advance!!!
  11. nmath

    Remove an input field from the tab order

    I think I figured it out- use tabindex = "-1" in the input tag. This prevents it from being in the tab order. Have a great day!
  12. nmath

    Remove an input field from the tab order

    I have an input field that I want to remove from the tab order of a form. Does anyone have any suggestions? Thanks in advance!!
  13. nmath

    post back data to parent window

    Well, I think I figured it out! function fillin() { var boxLength = opener.document.Mainform.chosenreqs.options.length++; var selectedItem = document.Mainform.req.selectedIndex; if (selectedItem == -1) alert("You have not selected a field!") else{ var selectedText =...
  14. nmath

    post back data to parent window

    OK, the above code worked wonderfully for input boxes on the parent window, however when I try to put options in a select box I get the follwing error "The server has thrown an exception" after which I get an IE error saying my browser is going to close. Obviously something is seriously wrong...
  15. nmath

    post back data to parent window

    Thank you so much!!! That worked really well.
  16. nmath

    Checking for later enddate after startdate

    This is the code that I used to validate: var endDate = new Date(document.Mainform.mydate2.value); var startDate = new Date(document.Mainform.mydate1.value); if (startDate > endDate ) { alert("The end date must be after the start date"); document.Mainform.mydate2.focus(); } I am not 100%...
  17. nmath

    post back data to parent window

    I have a pop up and would like to send the data back to window that created the pop up with out posting the page. To be more specific, I have a form, and would like to allow a user to select values out of a popup and those values selected will populate the form in the parent window. Any...
  18. nmath

    Invert a number

    Chris is right I tried it and it is always 0. I am not very good with this bitwise stuff. Thanks again Chris!!!! [bigsmile]
  19. nmath

    Invert a number

    That is a good idea! Thanks! [bigsmile]
  20. nmath

    Invert a number

    Chris, Thank you so much!! The functions work great! -Nina

Part and Inventory Search

Back
Top