
April 13th, 2007, 12:39 AM
|
|
Registered User
|
|
Join Date: Apr 2007
Posts: 1
Time spent in forums: 36 m 33 sec
Reputation Power: 0
|
|
|
Read excel data and display as lists with hyperlink in html
Hi Guyz,
I've some data from excel to be read and display in html as unordered lists with hyperlink.
How can I achieve this using Javascript?
In the excel I’ve the below details like, the application name and the path where the knowledge document of that application resides.
Colum1 Column2
App1 \\server\documents\App1.doc
App2 \\server\documents\App2.doc
I want to read the above data from excel and display in html as list
<ul>
<li> <font face=”verdana” size=”2”> <a href="\\server\documents\App1.doc"> App1</a></font></li>
<li> <font face=”verdana” size=”2”> <a href="\\server\documents\App2.doc"> App2</a></font></li>
</ul>
I want to use the column2 data as href value and column1 value as link name.I need to traverse the excel row by row and display them.
Thanks,
Balaji
|