PHP Classes

File: Layouts/_Layout.php

Recommend this page to a friend!
  Classes of Aleksey Nemiro   PHP ASP.NET WebForms   Layouts/_Layout.php   Download  
File: Layouts/_Layout.php
Role: Auxiliary data
Content type: text/plain
Description: Example script
Class: PHP ASP.NET WebForms
Emulation of ASP.NET WebForms engine in PHP
Author: By
Last change:
Date: 8 years ago
Size: 813 bytes
 

Contents

Class file image Download
<!--registration controls--> <?#Register Src="~/Controls/Header.php" TagPrefix="php" TagName="Header"?> <?#Register Src="~/Controls/Footer.php" TagPrefix="php" TagName="Footer"?> <!--//--> <!DOCTYPE html> <html xmlns:php="http://aleksey.nemiro.ru/php-webforms"> <head> <title></title> <meta name="viewport" content="width=device-width" /> <link rel="stylesheet" href="/Content/css/compiled.min.css" /> <script src="/Scripts/compiled.min.js" type="text/javascript"></script> <!--block of content "Head"--> <php:Head/> <!--//--> </head> <body> <!--Header control--> <php:Header ID="Header1" /> <!--//--> <div class="container"> <!--block of content "MainContent"--> <php:MainContent/> <!--//--> </div> <!--Footer control--> <php:Footer/> <!--//--> </body> </html>