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 bkrike 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: jcale4
  • Content: Threads
  • Order by date
  1. jcale4

    Parsing AJAX Response objects

    Hello, I have a simple form where a user inputs an account number into an input, on submit it uses Ajax to request information about that account from a database using a server-side ASP page. I am able to take the responseText and assign it to the innerHTML of an element in the page. My...
  2. jcale4

    long character storage

    Hello, I have a general question around the handling of columns with 2000+ characters. I have an ASP page with several textareas where the user can enter more than 2000 characters. When the user pulls an "existing" page with these textareas filled out, there is obviously a bottleneck. I have...
  3. jcale4

    TextArea data storage/retrieval

    Hello, I have a general question around the handling of textareas in ASP. I have a page with several textareas where the user can enter up to 2000 characters. When the user pulls an "existing" page with these textareas filled out, there is obviously a bottleneck. I have used Ajax a little to...
  4. jcale4

    Application monitor and notification

    Hello, I have a java listener application that runs on a windows 2003 server. It listens for raw ASCII data streams on a specified port and transforms and feeds the data into a DB2 database. Works great!. It is CRITICAL that this data is fed consistently throughout the day. If the listener goes...
  5. jcale4

    Save XML to client machine

    I am building a web application in ASP that must have an "Offline" version. Essentially the client will request a set of records and the app builds an XML document with these records. The XML file needs to be placed on the client machine and then read and manipulated client-side until it is...
  6. jcale4

    Client-side "database"

    Hello! I have an ASP app that serves as an Account Management system for sales representatives. I have included a function in the page that acts as "Filters" for the site. The filters are organized by the sales division hierarchy: Regions contain Districts contains Territories contains...
  7. jcale4

    Grouping Issue

    Hello! I have a table which holds scheduling information about people. The way this table has to be built results in data that looks like this: Person Monday Tuesday -------------- ------------- ------------- Mary Fletchall SMR D9 - Mary Fletchall SMR...
  8. jcale4

    Update all <td> style

    Hello! How can i dynamically update the bgcolor of all <td> in a document without assigning id's to all the <td>'s? I have a table which has data in the <td>'s that when pressed, the bgcolor of that <td> should change, referenced by 'this'. Problem is not highlighting the one they press, but...
  9. jcale4

    Trying to connect to Oracle....

    Hello, I'm trying to connect to an Oracle 8i database via ODBC on Win2k. When i try to setup the system DSN, I get this error: The Oracle(tm) client and networking components were not found. These components are supplied by Oracle Corporation and are part of the Oracle Version 7.3 (or...
  10. jcale4

    Passing Variables between Frames

    Hello! I'm building an ASP "reporting" application in which users simply fill out an input form, selecting the columns and data they want to view, hit submit and see query results below. I would like to use <frameset> to separate the input form and the "data view". When i post the data when the...
  11. jcale4

    Dynamic Expand/Collapse detail table

    Hello! There is a short tutorial on MSDN - http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/howto/creatingtoc.asp Is there any way to do this with a table? In other words, I have several thousand rows that i'm pulling from a database. I want to show/hide details...
  12. jcale4

    &quot;Docked&quot; menu

    Hello! I'm looking for a script that will "dock" a menu in the bottom of the browser window that scrolls with the user. Essentially it should be "attached" to the bottom of the browser window. Is there a way to do this with simple CSS positioning? I know how to position the <div> in the bottom...
  13. jcale4

    Simple Stream/String Manipulation

    I have a data stream that I am feeding into a method as a string, connects to a DB2 database and inserts the values contained in the string. Here is what the string looks like: ==SS39939294== 03012|39|33|32|2|232|9995 0333|34|007|32|2|7|95345 0392|39|33|32|2|232|9995 04492|39|3|32|8|77|95175...
  14. jcale4

    ASP Positioned update

    Hi!, Are positioned updates/deletes allowed in ASP? Here's what i have so far: recUPD = "SELECT entrydate, entrytime, sup_date, sup_time, orig_op, sup_id, id from tblri22 for update of elapsedtime" Set recordset = Server.CreateObject("ADODB.Recordset") recordset.Open recUPD, rtl Problem...
  15. jcale4

    Simple Dynamic Update Loop

    Hello! I have an ASP page that selects a recordset of dates, times, operators, etc. from a DB2 DB. This recordset (on average) consists of about 400,000 records. I have to loop through this recordset, perform some checks against the data, and while looping through, run an update on each row of...
  16. jcale4

    ASP create view on the fly

    HI! Quick Question - I have instances where i need to create views on the fly (since i cant seem to create global temporary tables in ASP). I have a feeling this is not customary ASP/RDBMS programming. I am using classic ASP and my DBMS is IBM DB2 UDB. I have successfully created and...
  17. jcale4

    &quot;Elapsed time&quot; update statement

    Hello! I have a table with data structure as follows: ORIG_OP ENTRYDATE ENTRYTIME SUP_ID SUP_DATE SUP_TIME ------- --------- ---------- ------ -------- --------- L5T 05/10/2005 11:26:35 L5T 05/10/2005 11:26:35 L5T 05/11/2005 07:54:01 L5T 05/11/2005 07:54:01 D4B...
  18. jcale4

    Contenttype = Excel problems

    I'm having problems with a report opening in Excel from ASP. The report starts to pull, but then the excel window closes immediately.. here's the code: <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!-- #include file="dbopen.inc" --> <!-- #include file="ADOVBS.inc" --> <% ops =...
  19. jcale4

    Printing to screen question

    HI! I have an application that allows a user to populate a series of <input> boxes and <select> boxes which are essentially filters on this application. when the boxes are populated and the user hits "apply", i need to gather the contents with a javascript function, then spit them onto the page...
  20. jcale4

    Recomendations for conceptual design stage

    I have a very generic question regarding the suggested method for returning very large recordsets and paging through the recordset. I am building a system that potentially (user dependent) pull recordsets of 2000+ rows. I am working on developing a paging system that will allow me to "Pull...

Part and Inventory Search

Back
Top