New Project
After launching Visual Studio, click Create a new Project, select your language (either Visual Basic or C#), then select Wisej, and you will see the list of Wisej.NET templates.

After you pick a project type, Visual Studio will create a new solution with the project template you have selected and will start up by showing our welcome page.

And that's pretty much it. Now you can compile the project and open Page1 in the designer.

Pick whatever control you need from the toolbox and you have a web application!

▶️ Hit Run.
Project Types
Web Desktop Application
Creates a project containing a custom desktop container. Looks like your Windows desktop. You can add items to the taskbar, show floating windows, change the position of the taskbar, etc.
You are basically building a desktop environment in the browser.
Web User Control
Creates a library project with a custom Wisej.NET control that can be used in other projects.
Web Application
Creates a web application with a floating window shown in the browser. It's up to you to build a navigation system to manage your application's forms in the browser.
Web Page Application
👉 This is the recommended project template.
Creates a web application with a main page where you can drop any control. The page fills the browser. You can navigate from page to page simply by creating more pages and calling their Show() method.
PWA Web Application
Creates a web application with a main page (similar to the Web Page Application). However, it adds the necessary JavaScript and manifest files to make the browser recognize the application as a PWA app.
The app can be installed on the client, and you can control some basic colors and icons in the manifest. Additionally, Wisej.NET creates the client-side web worker that caches locally all the Wisej.NET JavaScript files allowing the app to launch faster.
TroubleshootingLast updated
Was this helpful?