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 Shaun E 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 rabisco

  1. rabisco

    Uploading files to server for processing

    Thanks for your reply. Let me explain the set in some more detail. I have form1.asp - which has the <input type="file"> to select a file from the local file system. This then gets submitted to for form2.asp are you saying I should have the upload logic in an ifroma inside this if statement...
  2. rabisco

    Uploading files to server for processing

    Thanks, I have been trying the scripts out on my server and I'm finding out that one cannot use Request.Form after calling BinaryRead, and vice-versa. My dilema is that every page in the application I'm adding this functionality used requeest.form to check that the user has a valid session...
  3. rabisco

    Uploading files to server for processing

    I require some pointers to resources for writing code for file upload from a browser.
  4. rabisco

    Help needed to populate text box

    I have struggled with this for a few hours, hoping to get some help from here as usual. I have created this array... For x = 0 To rs.fields.count - 1 Response.Write("sampleValues[" & x & "] = '" & rs.fields.item(x).value & "';") Next because I need to x values to get the indexes of...
  5. rabisco

    Retrieving colum values from record by index.

    By the way, I am able to get the coumn name with Response.Write rs.fields.item(c).name, but I get an error with Response.Write rs.fields.item(c).value
  6. rabisco

    Retrieving colum values from record by index.

    I think I have just about tied myself up in knots on this one. Here goes for each c in arrCols Response.Write ("Columns to retrieve from spreadsheet") Response.Write("<br>") Response.Write c Response.Write("<br>") 'Response.Write rs.fields.item(c).value On Error Resume...
  7. rabisco

    Array help

    I have an add on question to the issue you resolved yesterday.. I am using these two routines to get the index of certain items in an array ide = 0 for each item in arrExcel if item <> "None" then Response.Write cstr(ide) '& item Response.Write("<br>")...
  8. rabisco

    Array help

    Thanks very much. It worked.
  9. rabisco

    Array help

    I'm really hoping some kind soul can help here. THis code... for each item in arrExcel if item <> "None" then Response.Write item Response.Write("<br>") End if Next Gets the item I want an print it out. I would like to get the index of the item in the array arrExcel. How...
  10. rabisco

    Updating text box from list box - all created via a loop

    Thanks - enjoy your training. It's been a while I've touched asp. This client just wanted some customization done to an asp application.
  11. rabisco

    Updating text box from list box - all created via a loop

    adam0101 I'll appreciate it if you could post some code samples
  12. rabisco

    Updating text box from list box - all created via a loop

    Thanks adam0101. Could you kindly post a sample?
  13. rabisco

    Updating text box from list box - all created via a loop

    One more question. I need to use the values populated into the text boxes to update an application. Any tips?
  14. rabisco

    Updating text box from list box - all created via a loop

    Thank adam0101 and j4606. You have made my day. Have a great weekend, and I hope the weather where you are is better than it is in Chicago.
  15. rabisco

    Updating text box from list box - all created via a loop

    Thanks.I'll try this out straight away. so where im my code to I create the i variable and incrementing it.. the outer for loop is posted below..... </head> <form name="frmMap" ID="frmMap" ACTION="MapMetadata2.asp?<%= Request.ServerVariables("QUERY_STRING") %>">...

Part and Inventory Search

Back
Top