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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by KathyDesign

  1. KathyDesign

    Passing multiple selects to next page for SQL query (JSP pages)

    Cheech, unfortunately, the ASP/VBscript syntax doesn't work in JSP pages. I do have a grasp of the general procedure I need to follow: - parse the form parameter if necessary - join it with the appropriate separators--either with a join method or by looping through the array - concatenate...
  2. KathyDesign

    How do I apply styles only to TD tags?

    ... OR, instead of writing your stylesheet like this: .cellstyle { background-color : yellow; /* or whatever */ } you could do it like this: .cellstyle TD { background-color : yellow; /* or whatever */ } Now you can go ahead and apply the style to the TR. By adding...
  3. KathyDesign

    Passing multiple selections to next page for DB query (JSP pages)

    . Oops, I meant to post this here (DW MX) but put it in the DW forum instead. In short, I'm trying to send multiple values from a multiple-select list to another page for use in the IN clause of a DB query. However, DW's request.getParameter() code seems to be passing only the first value...
  4. KathyDesign

    Passing multiple selects to next page for SQL query (JSP pages)

    . Hello, gang. This is my first question here. I looked through several similar postings on this topic, but none that tell me quite what I need to know... hope this isn't repetitive. On page1.jsp, I have a selection list with multiple options allowed, thus: <form action="page2.jsp"...

Part and Inventory Search

Back
Top