diff --git a/README.md b/README.md index 94c4e66..667d1f4 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,14 @@ To add a default controller and to change the default controller method, default webServer.StartServer(); } } + + public class DefaultController : Controller + { + public void MyMethodName() + { + SetHtmlResult("

Default controller example

"); + } + } #Getting Started ---------------