|
-
Aug 23rd, 2005, 09:35 AM
#1
Fanatic Member
Re: Hi Help pls.. Urgent...thanx alot
1) Implement a server side page that returns an xml representation of the data you want displayed in the table.
2) Place a div tag where you want the table to be. Give the div an id that you can reference it by...
3) Develop an xslt that transforms the xml data into the html table. Oh yeah...store this file on the server with the rest of your files.
4) Create an xml data island in your web page and point it to the xslt file.
5) Catch the onchange event of the drop down box
6) Create a javascript procedure (executed onchange of drop down) that will request information from the server page you created using MSXML.HTTP_REQUEST object.
7) Use MSXML2.XSLTemplate object and the xslt file you created to transform the xml received from the server page into the html table.
8) Assign the html output of (7) to the div.innerHTML.
And hey presto, you there!
This might seem like a lot, but there is not much code at all to each step.
Any more questions, dont hesitate to ask.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|