I want to load different pages in the application
using new page1.show(), but then the browser buttons to page forward and page back don’t work, what am I doing wrong.
Thank you.
Wisej.NET creates Single Page Applications (SPAs), it’s not a traditional HTML/JS/CSS page assembler. There is no navigation between HTML pages because there is only 1 page.
Usually in SPAs the browser’s navigation is done using the hash portion of the URL (called “deep linking”).
Wisej makes it available through the Application.Hash property and Application.HashChanged event (see API docs).
These are some referenced to learn more about SPAs and deep linking:
https://web.stanford.edu/class/cs142/lectures/SPA.pdf
https://gingter.org/2017/03/20/deep-link-angular-spa-iis/
In short:
Check also one of our examples with deep linking in github.
Please login first to submit.