Development steps: 1. Path mapping class (UrlMapping), which mainly splits and splices paths. (critical step)
2. FilterStream class (FilterStream), mainly responsible for generating static pages.
3. Static page class (HtmlPage), mainly calls UrlMapping and FilterStream classes.
Whichever page you want to make static, just inherit this class.
4. HtmlHandler class, the path suffix is Html, it will be processed by it, similar to the HtmlPage class.
5. HtmlPanel class (control), with this control on the page, the hyperlink will become static.
Expand