vote up 1 vote down star

Admin users can add HTML content to a website via a CMS textbox control.

When this content is displayed to a website visitor, I'd like to identify the presence of a HTML table (added by a Admin user using the CMS) and display an option for visitors to export that table.

I can handle the exporting, but identifying the HTML tables has me stumped. Can anyone provide me with some direction? This website is using ASP.NET 2.0/VB.NET.

flag
Is your intention to do this client or server side? – ahsteele Apr 27 at 15:31

2 Answers

vote up 1 vote down

If you want to do this work client side you can do so with JavaScript using getElementsByTagName('table').

http://www.w3schools.com/HTMLDOM/met_doc_getelementsbytagname.asp

link|flag
vote up 1 vote down

Give them a specific ID and target this id using Javascript acting on the DOM.

http://www.w3schools.com/htmldom/dom_obj_table.asp

link|flag
How do I find the tables to assign them a specific ID? – Michael Apr 27 at 15:27
getElementsByTagNames('table'); quirksmode.org/dom/getElementsByTagNames.html/… – Chris Ballance Apr 27 at 15:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.