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. jcale4

    Parsing AJAX Response objects

    I agree, from what I've read, JSON appears to be quicker than XML also. What I dont understand is how i return a name/value pair from an ASP page. All I know how to do from ASP is a response.write() on the page and the recordset gets returned as a String along with all the other HTML tags from...
  2. 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...
  3. 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...
  4. 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...
  5. jcale4

    Application monitor and notification

    Not so familiar with C, does java have any capabilities like this?
  6. 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...
  7. 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...
  8. jcale4

    Client-side "database"

    Excellent suggestion.. I know nothing about the XMLHTTP object, so I will do some research and try that. Thanks!
  9. jcale4

    Client-side "database"

    - Also, i have considered using cookies for the accounts, but have read that Cookies are not to be used as "psuedo-databases
  10. 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...
  11. jcale4

    Grouping Issue

    A person can only have 1 value per day column, so the other rows for that day are null. I could not figure out how to get that query to work so i converted them to numbers and i'm summing. I then just convert them back to the character equivs in a "decode" table. But, I really appreciate...
  12. 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...
  13. jcale4

    Update all <td> style

    Both excellent solutions, Thank you! Before I could even check the thread, i had already figured out a solution - essentially the same solution as LookingForInfo. I'm storing the original <td> that was clicked in a global variable, then swapping them out when the next is pressed. Thanks...
  14. jcale4

    Update all &lt;td&gt; 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...
  15. 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...
  16. jcale4

    Passing Variables between Frames

    Tracy, Do you have an example of this? Just trying to visualize how this will work. Thanks!
  17. jcale4

    Dynamic Expand/Collapse detail table

    This is excellent. However, ADO shaping apears to be a way to create hierarchical recordsets by joining tables on related data. I am pulling data from 1 data source which looks like this: ACCOUNT------NAME-----------SALES---------ITEM 1324---------ACCOUNT1-------1024.00-------FIRSTITEM...
  18. jcale4

    Dynamic Expand/Collapse detail table

    dtqbterror, (and fellow chiefs fan, (they sure laid it down yesterday didnt they?))... I like the sound of that, unfortunetely I'm not sure what an ADO Shaped recordset is. Thanks!
  19. 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...
  20. 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...

Part and Inventory Search

Back
Top