Skip to content

Instantly share code, notes, and snippets.

@mrstebo
Created March 27, 2017 21:15
Show Gist options
  • Select an option

  • Save mrstebo/4876c948f352f87b06ffdf9d42901c95 to your computer and use it in GitHub Desktop.

Select an option

Save mrstebo/4876c948f352f87b06ffdf9d42901c95 to your computer and use it in GitHub Desktop.
Classic ASP Components - Entrypoint
<!--#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