HTML to XOJO Web app

I have a question

i have HTML look page and i like to now is i can use that code to show the page but use XOJO code to manage the page and save the data to PosgreSQL.

thanks

Xojo Web is built upon Bootstrap. Using your own custom HTML design is very difficult and a lot of work.

sounds like you will use xojo as back-end to handle data and store it into db.
you could use java script fetch command in your current page to send post request to a xojo back-end.

ok

thanks for the input, with this i going to do all with XOJO Code no mix.

thanks

2 Likes

@Alexis_Colon_Lugo
As @Tim_Parnell pointed out that Xojo WEB is built upon Bootstrap.

For themes to use check out https://bootswatch.com/

And a Blog post with some info: https://blog.xojo.com/2024/06/18/how-to-use-bootstrap-themes-to-customize-your-xojo-web-apps/

If you don’t mind getting low-level, you can use HandleURL to do whatever you want. I have HTML templates that HandleURL customizes for output, manages state and session cookies, and does database work as well.

There are probably better frameworks to do that in, but in my case it allows me to reuse a lot of complex classes that I developed for Desktop, so it can be worth it.

ok

thanks