Table of Contents

ASP(Active Server Pages)

ASP

ASP.NET (.NET)

Web Forms(aspx)

<h1>Code Nugget Example with .ASPX file</h1>
<h3>
  Hello <%=name %>, the year is <%= DateTime.Now.Year %>
</h3>

<p>
  Checkout <a href="/Products/Details/<%=productId %>">this product</a>
</p>

razor(cshtml)

<h1>Razor Example</h1>
<h3>
  Hello @name, the year is @DateTime.Now.Year
</h3>

<p>
  Checkout <a href="/Products/Details/@productId>">this product</a>
</p>

.NET CORE

References