thoth Report post Posted July 29, 2008 I have a column3d chart and I want to place two or three JavaScript functions in a single link. (each column on the chart contains a link). Is this possible and if so how can it be done? My current link looks like this: string link = "javascript:updateChart(%26apos;" + oRs.ReadData["STRAIGHT"].ToString() + "%26apos;)"; I want the link to contain 2 or 3 functions, something like... string link = "javascript:updateChart(%26apos;" + oRs.ReadData["STRAIGHT"].ToString() + "%26apos;)" AND javascript:updateStats(%26apos;" + oRs.ReadData["STRAIGHT"].ToString() + "%26apos;)"; Is it possible and what would the correct syntax be? Share this post Link to post Share on other sites
Arindam Report post Posted July 30, 2008 Could you please use ';' separator. Please follow the code string link = "javascript:updateChart(%26apos;" + oRs.ReadData["STRAIGHT"].ToString() + "%26apos; ) ; updateStats(%26apos;" + oRs.ReadData["STRAIGHT"].ToString() + "%26apos; ) ;"; Share this post Link to post Share on other sites
thoth Report post Posted July 30, 2008 Thanks again! Share this post Link to post Share on other sites