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

  1. scripter50

    Javascript loop thru large record set in NodeJS

    Thanks ChrisHirst, I think I understand what you are saying but I'm still in a pickle. Somehow I need to create an array of arrays. As I iterate thru the arrCBUS, I want create an an array of the selected value (arrCBUS[i][3] is a ticket number I'm after). The reason for the record limits is...
  2. scripter50

    Javascript loop thru large record set in NodeJS

    Still confused, this is what I have, but getting an error saying "arrTicketList[arrTicketList.length] is not defined" This is the result set of an Oracle query, 20 columns, I need column 4 for example var recordCount = arrCBUS.length; (say 100 for example) var arrTicketList = []; var...
  3. scripter50

    Javascript loop thru large record set in NodeJS

    I have an Oracle query in a NodeJS function and having trouble with the loop thru the record set. Nodejs, hence javascript stuff. Example: results from query of table with 20 columns, on of which is "ticket". I loop thru the record set and stuff the values into a mainArray for(var i in result)...
  4. scripter50

    OOP PHP Array Values

    That's what I needed. thanks!
  5. scripter50

    OOP PHP Array Values

    I'm have trouble getting values from an array returned from a php class. Code example: <?php require_once("include/NameDetails.php"); class TestQueries { var $CE_Config_DB = NULL; function getNameInfo($searchType, $searchValue) { $resultArray = array(); $query = "SELECT...
  6. scripter50

    PHP under Windows Vista &amp; IIS 7.0

    The error msg is this: HTTP Error 500.0 - Internal Server Error Description: The page cannot be displayed because an internal server error has occurred. Error Code: 0x80070003 Notification: ExecuteRequestHandler Module: IsapiModule Requested URL: http://localhost:80/phpTest.php...
  7. scripter50

    PHP under Windows Vista &amp; IIS 7.0

    Not able to install any version of PHP on Vista under IIS 7.0. Most common error relates to ISAPI module not being properly configured. Any ideas out there?
  8. scripter50

    Localhost Problem??

    Thanks vacunita - that's what I needed...
  9. scripter50

    Localhost Problem??

    I have some basic code that will not work on my localhost, but works just fine on my website?? Is there something in the php.ini that needs to be changed? Just setting a hidden field with js and submitting?? <html> <head> <title>Test Page</title> <script language = "javascript" type =...
  10. scripter50

    ASP &amp; MS Access - SQL Error??

    When I response.write the sql statement and copy it to access, it works just fine. that was the first thing I tested. I figured it that worked, then all is well, but I'll see if it's really an error before the sql statement is run.
  11. scripter50

    ASP &amp; MS Access - SQL Error??

    Good idea, I'll give it a try. thanks
  12. scripter50

    ASP &amp; MS Access - SQL Error??

    sql_insert = "insert into tblPets (intPetKey, strPetName, intPetType, strPetBreed, strPetGender, strPetMeds, " & _ " strPetBirthdate, strPetQuarters, strHealth, strVaccinations, strExercise, strBehaviorAdult, strBehaviorChild, strBehaviorAnimal, " & _ " strVetName, strVetAddress, strVetPhone...
  13. scripter50

    ASP &amp; MS Access - SQL Error??

    I have a website written in ASP with an Access db. I have an INSERT on a page that does not produce any ASP error (err.description), but produces a browser error saying "error with sql insert statement". The insert is completing even though the error is displayed??? Any ideas out there? thanks...
  14. scripter50

    CDO.Message Problems in ASP

    Using cdosys for email on a Windows 2003 box. Email transmits but with numerous "!" intermingled in the text. I've tried a number of encodings to stop it, but nothing seems to work. Any ideas out there? Thanks in advance, scripter50
  15. scripter50

    Javascript Checking Dynamic HTML from ASP

    Sheko, Never mind, I needed to put .value in the string, it works fine. Thanks again.
  16. scripter50

    Javascript Checking Dynamic HTML from ASP

    Sheko, Doesn't work? The script doesn't see any empty fields? Do I need to put the values into an array before the document.all call? I'm confused! My js manual shows document.all[i], but no reference to document.all("formfield")?? Thanks again, Scripter50
  17. scripter50

    Javascript Checking Dynamic HTML from ASP

    Thanks Sheko for your quick Sunday response! Also, sorry for my abbreviated code in my post, just trying to save space. Also, I thought of posting in javascript, but not sure if user would understand the asp generated html! I'll give your suggestion a go. Is there a way to put all of the form...
  18. scripter50

    Javascript Checking Dynamic HTML from ASP

    I have an ASP page generating html code like this... <%for i = 1 to nNbrOfDays%> <table> <tr> <td>Day <%=i%>&nbsp;<input type="text" name="txtDate<%=i%>">td> <td><select name="cboService<%=i%>" style="width:120" onchange="fnPopVisits<%=i%>();"> <option value="0">No Service</option> <option...
  19. scripter50

    Nested &quot;For&quot; Loop Trouble

    Here's the code.. <% if request.form("btnProceed") = "Proceed" then nNbrOfDays = request.form("txtNbrOfDays") %> <input type="hidden" name="hdnNbrOfDays" value="<%=nNbrOfDays%>"> <% for i = 1 to nNbrOfDays %> <table cellspacing="0" cellpadding="2" border="0" width> <tr>...
  20. scripter50

    Nested &quot;For&quot; Loop Trouble

    I was trying to avoid too much code in the string... I insert the "day" information ( 1 to Qty ).. then I need to insert the "visit" information ( for 1 to Qty days, there are 1 to qty Visits) For i = 1 to Qty sql= "insert into tbl...." objConn.execute sql Next For i = 1 to Qty...

Part and Inventory Search

Back
Top