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 Chris Miller 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: *

  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") %>">...
  16. rabisco

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

    But the issue here is that the number of selected boxes to be created will not always be the same, so I cannot name them. The list boxes are and text boxes created dynamically at run time.
  17. rabisco

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

    The text box is not getting updated when I select an option in the list box. Please note that the number of list boxes and text boxes are determined by a for each routine further up the page. If I remove the text box from the second for each loop i.e. so I have only one text box, each of the...
  18. rabisco

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

    I am attemting to update multiple textboxes with the value of a selected option in multiple list boxes. Each list box has a text box next to it. My code is a follows..... <td> <SELECT name="excelValues" onChange="document.frmMap.columnValue.value=this.options[this.selectedIndex].text">...
  19. rabisco

    Reports have no data in Crystal Enterprise

    Thanks. The 2 reports in question are showing up as blank, even though I have tweaked the parameters. What do the values I can view via browse field data indicate? I am able to run and view other reports though.
  20. rabisco

    Reports have no data in Crystal Enterprise

    Thanks for your response. I'm very new to Crystal, how do I run the report and return data in Crystal designer? The admin interface I was refering to was the Crystal management Console.

Part and Inventory Search

Back
Top