Created
March 27, 2017 21:15
-
-
Save mrstebo/4876c948f352f87b06ffdf9d42901c95 to your computer and use it in GitHub Desktop.
Classic ASP Components - Entrypoint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--#include VIRTUAL=/components/includes.asp--> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Classic ASP Component Test</title> | |
| <link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> | |
| </head> | |
| <body> | |
| <% response.write((New Header).Render) %> | |
| <% response.write((New BodyContainer).Render) %> | |
| <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment