remove mkdocs specific syntax

This commit is contained in:
Marcello 2024-06-16 19:14:59 +02:00
parent 8d08c1964f
commit 8026e1465b
Signed by: m-lamonaca
SSH key fingerprint: SHA256:8db8uii6Gweq7TbKixFBioW2T8CbgtyFETyYL3cr3zk
77 changed files with 1128 additions and 1128 deletions

View file

@ -4,7 +4,7 @@
The fist loaded page is `Default.aspx` and its underlying code.
```html linenums="1"
```html
<!-- directive -->
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Project.Default" %>
@ -26,7 +26,7 @@ The fist loaded page is `Default.aspx` and its underlying code.
### Page Directive
```cs linenums="1"
```cs
<%@ Page Language="C#" // define language used (can be C# or VB)
AutoEventWireup="true" // automatically create and setup event handlers
CodeBehind="Default.aspx.cs" // define the underlying code file
@ -35,7 +35,7 @@ The fist loaded page is `Default.aspx` and its underlying code.
### Web Controls
```xml linenums="1"
```xml
<asp:Control ID="" runat="server" ...></asp:Control>
<!-- Label: empty text will diplay ID, use empty space as text for empty label -->
@ -59,7 +59,7 @@ The fist loaded page is `Default.aspx` and its underlying code.
## `Page.aspx.cs`
```cs linenums="1"
```cs
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)