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 Wanet Telecoms Ltd 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 kim1234

  1. kim1234

    MSXML Parser use in Netscape?

    knuckle05 - yes, if you process XML server-side, all you end up sending the browser is plain old HTML. While HTML is not quite as browser independent as we'd all like ;-), at least you won't have to worry about sending your XML client-side. Endbringer - GiffordS is correct in saying Netscape...
  2. kim1234

    Users online

    You can track the number of active users through routines in a global.asa file. Here's an article which tells you exactly what to do: http://www.asp101.com/resources/active_users.asp --k
  3. kim1234

    for statement in xsl

    There is no such thing as a &quot;for loop&quot; in XSL, only a for-each loop. You'll have to mimic the logic of a for loop using parameters, named templates and an &quot;if&quot; statement. Try the following code (you'll have to customize it to work with your xml): <xsl:template...
  4. kim1234

    wrong 'or'

    Shouldn't your &quot;OR&quot; test be an &quot;AND&quot; test? --K
  5. kim1234

    HoverButton problem

    FYI: The &quot;hover button&quot; component in FrontPage inserts a Java Applet on your page (NOT a typical rollover using 2 images and some javascript). A couple of questions for you (to try to narrow down the problem): 1. Are you &quot;previewing&quot; your page on the &quot;preview&quot...
  6. kim1234

    Prompting on onLoad only once

    You've got three options in client-side JavaScript for passing informaiton among pages: 1. Cookies - learn to write and retrieve cookie information, Cookies can be written to last for the length of the browswer session (temporary cookies - stored in memory) , or for days/months/years...
  7. kim1234

    PROBLEM: OnClick Link Sends Scroll to TOP

    Another option: <a href=&quot;showByDate_detail.asp?f_ID=<%=rsDC.Fields(&quot;bc_key&quot;)%>&quot; target=&quot;popup&quot; onClick=&quot;window.open('','popup','resizable=yes,menubar=yes,scrollbars=yes,height=300,width=400');return false&quot;> <i><%= rsDc.Fields(&quot;bc_Title&quot;) %></i>...
  8. kim1234

    Maintaining text shape with tranpsarent background

    Short answer: Nope. Is it the Photoshop's fault: No. Long Answer: Regardless of what program you use to create your signature graphic (Photoshop, Illustrator, Etc.) the result you're aiming for is a .gif or a .png file (which are both rasterized formats). Starting with one program or the...
  9. kim1234

    Paging XML with XSL

    The error message is basically saying &quot; <xsl:script>&quot; is not part of the version of XSL(T) that you are using. The namsepace you've declared specifically says you are using XSL(T) version 1.0, and the &quot;<xsl:script>&quot; element is part of XSL(T) 1.1. You can try changing the...
  10. kim1234

    png background image issue

    What browser are you previewing in? Only a handfull support alpha transparency for 24bit png's natively. Here's a partial list: DON'T support alpha (partial) transparency: Internet Explorer 6 (and 5 and 4) Netscape 4 Opera 5 DO support alpha transparency: Mozilla 1+ Netscape...
  11. kim1234

    Including parseable HTML tags, using XML/DTD/XSL ??

    Please excuse the technical difficulties ;-) let's try that again..... Have you tried the &quot;<&quot; and the &quot;>&quot; with their individual entity references? So, use &quot;& lt ;&quot; in place of &quot;<&quot; and &quot;& gt ;&quot; in place of &quot;>&quot;? (Please forgive the...
  12. kim1234

    Including parseable HTML tags, using XML/DTD/XSL ??

    Have you tried replacing <br/> with &lt;br/&lt;
  13. kim1234

    Includes Conditional

    Try the inStr() function, e.g.: inStr(stringtosearch,stringtofind) You example could read like this: If inStr(session(&quot;Item1&quot;),&quot;ABCD&quot;)<>0 Then The inStr() function returns an integer value representing the starting(character) position of one string (&quot;ABCD&quot;) in...
  14. kim1234

    Apply CSS to only Text input field

    There is a newer feature of CSS (2) that will allow you to separate input types (however, currently not supported in IE): input[type=&quot;text&quot;] {....} Here's a reference describing it's use: http://www.blooberry.com/indexdot/css/syntax/selectors/attribute.htm#value If you need...
  15. kim1234

    array index

    Going back to your first example: for (i = 1; i<=javacount; i++) { var value = document.frmtermno.txttermno + i + .value; alert(value) } Try this instead: for (i = 1; i<=javacount; i++) { var value = eval(&quot;document.frmtermno.txttermno&quot; + i + &quot;.value&quot;)...

Part and Inventory Search

Back
Top