TableCell embed HTML or ASPX
-
Is it possible to dynamically embed HTML or ASPX into a TableCell? Basically, I'll pass in something into my page eg. http://localhost/default.aspx?type=Contents and so I want the Contents.aspx to be put into a TableCell **************** * * **************** * * CO * * * NT * * * EN * * * TS * * * PAGE * **************** If there's one thing I've learned, it's that life is one crushing defeat after another until you just wish Flanders was dead. - Homer Simpson
-
Is it possible to dynamically embed HTML or ASPX into a TableCell? Basically, I'll pass in something into my page eg. http://localhost/default.aspx?type=Contents and so I want the Contents.aspx to be put into a TableCell **************** * * **************** * * CO * * * NT * * * EN * * * TS * * * PAGE * **************** If there's one thing I've learned, it's that life is one crushing defeat after another until you just wish Flanders was dead. - Homer Simpson
You can do this by using System.Execute and put the output in the table cell. Another way is to your the server control I made: http://codeproject.com/aspnet/RJContentPanel.asp[^] This will use Web User Controls (ascx) controls and swap them in or out depending on a url parameter. Rocky <>< www.HintsAndTips.com www.MyQuickPoll.com - 2004 Election poll is #33 www.GotTheAnswerToSpam.com
-
You can do this by using System.Execute and put the output in the table cell. Another way is to your the server control I made: http://codeproject.com/aspnet/RJContentPanel.asp[^] This will use Web User Controls (ascx) controls and swap them in or out depending on a url parameter. Rocky <>< www.HintsAndTips.com www.MyQuickPoll.com - 2004 Election poll is #33 www.GotTheAnswerToSpam.com
You've helped me once again. Thanx Rocky. I'll look into this and hopefully everything will work great :) If there's one thing I've learned, it's that life is one crushing defeat after another until you just wish Flanders was dead. - Homer Simpson