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

    Passing paramaters to another asp page

    There is obviously something basic I don't understand. I need to pass a variable containing a comma delimited string to another asp page for further processing and output. Here's some simplified code that doesn't work. What have I gotten confused about? Nothing is being passed to the browser...
  2. harpconn

    type mismatch with arrays

    I need to de-dup an array I currently define as DIM ISBN(500). I found nice de-dup code to use, but I'm getting a "type mismatch" error. I put together a simple test case that shows a working and non-working approach, but I don't understand why the explicit Dim won't work or how to...
  3. harpconn

    passing paramaters to asp pages

    I need to pass a textstring and an array from one asp page to another. They are created by program code, not by form input. I am getting various errors, including "type mismatch" even though I have identical Dim statements in each page. Here's my test code. Please tell me what I'm...
  4. harpconn

    xsl for-each select with filter for field with currency

    I have xml with a field "UsedPrice" which has values like $5.25 and $9.89. I need to select with a filter that returns only items with prices higher than a threshhold, say $3.00. I will want to combine (and) the price filter with other filters, such as...
  5. harpconn

    help with syntax for xsl multiple filter for-next select

    I'm trying to set up a multiple value filter in xsl for an xml file containing book info. So, for example, I only want to output data when UsedPrice<5.00 and Media=Paperback. I've tried <xsl:for-next select=&quot;ProductInfo/Details[number(substring-after(UsedPrice,'$'))&gt;5.00]> that works...
  6. harpconn

    drop down value carry over to asp page

    I have a drop down menu on page1.asp A choice from the drop down creates page2.asp (or recursively, page1.asp). I am losing the value of the &quot;selected&quot; item when the new page appears. How can I retain it? Is there some &quot;selected&quot; property I can set?
  7. harpconn

    Login Levels - customer areas

    Most database login scripts assign &quot;levels&quot; 1,2,3 for security. I need that kind of generalized security for &quot;members only&quot; areas, but I also need to be able to let customers-only log into their own directories. Is there a way to accomplist this without having to have many...

Part and Inventory Search

Back
Top