Add your ASP code
Paste your Classic ASP code inside the editor using standard server-side delimiters such as <% ... %>. You can use Response.Write to render markup, create server objects, and handle events inside the same script.
The AxonASP WASM Playground runs Classic ASP code in the browser through WebAssembly. The page loads wasm_exec.js and axonasp.wasm before enabling the editor run button.
Paste your Classic ASP code inside the editor using standard server-side delimiters such as <% ... %>. You can use Response.Write to render markup, create server objects, and handle events inside the same script.
When the page opens, JavaScript calls WebAssembly.instantiateStreaming(fetch("axonasp.wasm"), go.importObject). After the runtime reports that the module is ready, you can run the current script from the editor.
Click Run ASP Code to execute the current content. The output area below the editor shows the rendered result, while the status bar reports whether the WebAssembly module is loading, ready, or in an error state.
For live UI actions, bind handlers such as onclick="dispatchLiveEvent(...)" and read the event name through Axon.EventName inside the ASP runtime. This keeps browser interactions and server-side logic connected in the same playground.