/
githubmirror
/
CS-Notes
Обзор
Документация
Войти
/
githubmirror
/
CS-Notes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/_style/prism-master/examples/prism-aspnet.html
36 строк
1 KB
CyC2018
use prism-tomorrow.css
19 дек 2018, 09:09
19 дек 2018, 09:09
e9e604e
Код
Авторство
О чём код?
<h2>Comments</h2> <pre><code><%-- This is a comment --%> <%-- This is a multi-line comment --%></code></pre> <h2>Page directives</h2> <pre><code><%@ Page Title="Products" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="ProductList.aspx.cs" Inherits="WingtipToys.ProductList" %> </code></pre> <h2>Directive tag</h2> <pre><code><%: Page.Title %> <a href="ProductDetails.aspx?productID=<%#:Item.ProductID%>"> <span> <%#:Item.ProductName%> </span></code></pre> <h2>Highlighted C# inside scripts</h2> <p>This requires the C# component to be loaded. On this page, check C# <strong>before</strong> checking ASP.NET should make the example below work properly.</p> <pre><code><script runat="server"> // The following variables are visible to all procedures // within the script block. String str; int i; int i2; int DoubleIt(int inpt) { // The following variable is visible only within // the DoubleIt procedure. int factor = 2; return inpt * factor; } </script></code></pre>