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 Chris Miller 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: lillu
  • Order by date
  1. lillu

    Open and read from Excel with Javascript or ASP

    Thanks, I already worked it out. The file resides on a server which is accessible to certain users (those I gave permissions to edit this file) I just had to give a full path in ASP and it worked all fine. Using javascript will raise a security issue so that's why I opted for ASP. Thanks...
  2. lillu

    Open and read Excel file with ASP or Javascript

    Hi George, Thanks, it works great. I was referencing the right worksheet BTW. Lillu If you want to get a job done, ask a busy person. (Sherry Conway Appel - American writer) http://www.geocities.com/lillamarta http://www.geocities.com/lillamarta/purple
  3. lillu

    Installing multiple versions of IE on one computer

    This may help: can internet explorer 5.01 and IE 6.0 sp1 coexist on same computer? http://www.faqts.com/knowledge_base/view.phtml/aid/19833/fid/596 If you want to get a job done, ask a busy person. (Sherry Conway Appel - American writer) http://www.geocities.com/lillamarta...
  4. lillu

    Open and read Excel file with ASP or Javascript

    Hi, I must accomplish this using client-side javascript or if it's not feasible, ASP. The scenario: There is an Excel file that resides on a server. The worksheet contains two columns: Date and Name. Eg. Date Name 11 Nov John Doe 12 Nov Fred Leigh They can swap...
  5. lillu

    Open and read from Excel with Javascript or ASP

    sorry - forgot to write subject. Hi, I must accomplish this using client-side javascript or if it's not feasible, ASP. The scenario: There is an Excel file that resides on a server. The worksheet contains two columns: Date and Name. Eg. Date Name 11 Nov John Doe 12 Nov...
  6. lillu

    Hi, I must accomplish this using

    Hi, I must accomplish this using client-side javascript or if it's not feasible, ASP. The scenario: There is an Excel file that resides on a server. The worksheet contains two columns: Date and Name. Eg. Date Name 11 Nov John Doe 12 Nov Fred Leigh They can swap...
  7. lillu

    How do I preserve white space?

    Without the actual xsl it's left to guesswork how the formatting takes place and where the xml:space="preserve" should go. Here's an example I used to output some text and breaking lines. If there's a link coming, it will not be broken, but a whitespace is added and it continues on...
  8. lillu

    Client Side XML parser for Netscape 4.78

    XML output for NN4? I don't think it is worth the trouble. Try next best: NN6 which is reasonably OK with xml support, but you will still have to make some modifications (if you worked with IE) to make it completely cross-browser. Go server-side and forget all the hassle. By the way here's an...
  9. lillu

    New xml file not working

    The problem might lie in the asp code you're working with. This xsl statement looks up and spits out all nodes that are contained in datatable/jmmain_nmmain_archrg and in datatable/jmmain_nmmain_jfacilty respectively, so it shouldn't be a problem. <xsl:for-each...
  10. lillu

    xsl boolean() function and True/False

    Make sure you use the new xsl namespace. <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;> <xsl:value-of select=&quot;boolean('hello')&quot;/> - this should evaluate to true <xsl:value-of select=&quot;boolean('')&quot;/> - this should...
  11. lillu

    attributes

    Hi, Here's an example on how to print xml attributes using xsl: <?xml version='1.0'?> <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;> <xsl:template match=&quot;/&quot;> <HTML> <BODY> <p> Attributes found in the listing element: </p> <p>...
  12. lillu

    Error : Document Element....

    Hi, If you're still having problems you might want to check out this: http://support.microsoft.com/default.aspx?kbid=324460 on how to upgrade to MSXML 4.0 properly. If you want to get a job done, ask a busy person. (Sherry Conway Appel - American writer) http://www.geocities.com/lillamarta...
  13. lillu

    XML or ASP(ACCESS)????

    It depends what other information you wish to store. If none, then XML will do. To convert the entries easily to HTML, I would use Data Islands. Data Islands are the easiest way to display xml in HTML. You can page through the entries one by one using straightforward buttons, such as Next /...
  14. lillu

    Create animation on mouseover command

    Hi, I could have corrected your code but instead have a look at this amazingly simple animation. Originally the script was triggered with the onload event without the user's interference and can serve as the simplest banner ever created. I changed it to onmouseover as you requested and helas...
  15. lillu

    JavaScript and Images

    Hi again, Actually, you don't have to go to such length as to create a new array with indexes. This will perfectly do: <html> <head> <title>Show image selected in a dropdown box</title> <script language=&quot;javascript&quot;> var Products = new...
  16. lillu

    JavaScript and Images

    Sorry, something went wrong while posting... Here's the full page. <html> <head> <title>Show image selected in a dropdown box</title> <script language=&quot;javascript&quot;> var Products = new Array('a.gif','b.gif','c.gif','d.gif','e.gif'); var preload_Images = new...
  17. lillu

    JavaScript and Images

    Hi, This is a nice little script in full. <html> <head> <title>Show image selected in a dropdown box</title> <script language=&quot;javascript&quot;> var Products = new Array('a.gif','b.gif','c.gif','d.gif','e.gif'); //you create an array of images using their name (or path if in...
  18. lillu

    PRINT ATTRIBUTE IN CSS?

    Sorry, I have to correct something in the script: <parent.imagep.focus();parent.imagep.print()&quot;><\/form>'); or you reference your imagep by its index number in the array of frames: document.parent.frames[0] this is mainp' index number document.parent.frames[1] this is imagep' index...
  19. lillu

    PRINT ATTRIBUTE IN CSS?

    Hi Richard, Sorry I was unclear on that. I got confused by that mentioning of css althought to print something does not necessarily involve css just a javascript function: window.print(); This always prints the current window with all the content. It's here when css comes in. Without opening...
  20. lillu

    Japanese website. how?

    Try these links: http://www.people.fas.harvard.edu/~chgis/work/downloads/ http://www.people.fas.harvard.edu/~chgis/work/downloads/faqs/utf_converter.html Lillu If you want to get a job done, ask a busy person. (Sherry Conway Appel - American writer) http://www.geocities.com/lillamarta

Part and Inventory Search

Back
Top