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...
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...
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)...
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...
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...
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?
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 =...
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.
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...
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
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
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...
I have an ASP page generating html code like this...
<%for i = 1 to nNbrOfDays%>
<table>
<tr>
<td>Day <%=i%> <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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.