Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. COThank you for your detailed explanation, it all makes sense. I'm just not sure how 2. would do the trick for my requirements. As I have mentioned in my question, the layout of the page to be displayed comes from the database and I need the control to be placed exactly where the curly bracket in the content is. So I'm loading the control as I build a string to display as output, if I don't do the render as string how would the control get placed exactly where I want it?
      singulars
    2. COYou can do what .net does. Put your HTML in a Literal control and add it to the control tree. When you come across a button or a text field, create controls for those and add them to the control tree. If you have more HTML after those controls then put that HTML in another Literal control and add that to the control tree. It's not a fun way to build a page but if you're doing something a little crazy like building a page based on a string you're pulling from a database then you're going to experience a bit of pain making that work.
      singulars
    3. COHmm, that sounds challenging. The problem I'm having is reverse-engineering an existing classic ASP application in .Net. So the idea of HTML coming from database (done in classic ASP) cannot be changed because I need to make sure that the new application works exactly the same as the old one without having to make any changes. Also, the template is in a format like this "<table><row>{header_stuff}<row><row>{more_dynamic_stuff}<row><row>static html and other things<row><Some More Rows}</table>. So the curly bracket {more_dynamic_stuff} will have a bunch of controls.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload