HTML page inside tablecell..
-
I got an ASP.NET page where I got a table with a button menu.I need to show a HTML page by clicking any button but the tricky part is to show this HTML page in the same page inside a tablecell from the same table.Any ideas? Best regards
-
I got an ASP.NET page where I got a table with a button menu.I need to show a HTML page by clicking any button but the tricky part is to show this HTML page in the same page inside a tablecell from the same table.Any ideas? Best regards
use an iframe in the table's cell where u want to display the page and when button is clicked set the source of iframe to that page e.g. page is abc.aspx then use: <iframe> </td> on button click event: pageFrame.Attributes("Src") = "abc.aspx"; Reagrds, <div class="ForumSig">Rashida Jabeen <a href="http://www.akaas.net">http://www.akaas.net</a>[<a href="http://www.akaas.net" target="_blank" title="New Window">^</a>]</div></x-turndown>