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...
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
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...
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...
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...
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...
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...
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...
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...
Make sure you use the new xsl namespace.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:value-of select="boolean('hello')"/>
- this should evaluate to true
<xsl:value-of select="boolean('')"/>
- this should...
Hi,
Here's an example on how to print xml attributes using xsl:
<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<HTML>
<BODY>
<p> Attributes found in the listing element: </p>
<p>...
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...
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 /...
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...
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="javascript">
var Products = new...
Sorry, something went wrong while posting...
Here's the full page.
<html>
<head>
<title>Show image selected in a dropdown box</title>
<script language="javascript">
var Products = new Array('a.gif','b.gif','c.gif','d.gif','e.gif');
var preload_Images = new...
Hi,
This is a nice little script in full.
<html>
<head>
<title>Show image selected in a dropdown box</title>
<script language="javascript">
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...
Sorry,
I have to correct something in the script:
<parent.imagep.focus();parent.imagep.print()"><\/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...
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.