Hi,
I am trying to use XML to display tables on my website, in hope it's faster than using a dataReader or dataSet.
The way I do it is using 3 files:
1. myxsl.xsl - an XSL file that defines how the XML should look like. It is well formed.
2. mysource.aspx - an ASPX file that just selects the...
Hi, I am trying to sort an XML table dynamically, according to the header the user clicked on. In order to do that I need to select the sort node from the XSL file being used by the table, change its attributes and reload it.
For some reason this line returns null for me
set sortNode=...
Can anyone help me with some outlines for the algorithm? Just the general idea? I assume I'll need to use a stack in order to do this, but that's pretty much all I've figured out so far...
Hello all.
I'm sure you all are familiar with the quick sort algoritem, but I'm still gonna post it in short:
IF left < right THEN
BEGIN
pivot := partition (list, left, right);
Quicksort (list, left, pivot-1);
Quicksort (list, pivot + 1, right);
END
In the...
Hey everyone,
I am writing a program that reads from a file, separates the words from punctuation marks and aranges arranges the words in alphabetical order in a linked list.
I have a loop, which deals with one line at a time, taking care of every word. It works fine with a 1-line file, but...
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.