72 lines
2.8 KiB
HTML
72 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Foo site</title>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
|
|
<link rel="stylesheet" href="css/main.css" />
|
|
<!--
|
|
__ __ _ _ _ _____ _____
|
|
\ \ / /__ _ _ __ _ ___| |_ ___ | \ | | ____|_ _|
|
|
\ V / _ \| | | | / _` |/ _ \ __/ __| | \| | _| | |
|
|
| | (_) | |_| | | (_| | __/ |_\__ \ _| |\ | |___ | |
|
|
|_|\___/ \__,_| \__, |\___|\__|___/ (_)_| \_|_____| |_|
|
|
|___/
|
|
-->
|
|
</head>
|
|
<body>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h1><img src="http://i.microsoft.com/net/images/chrome/net-logo.jpg" /> Install the .NET Framework</h1>
|
|
<p class="lead">You need to install the .NET Framework to run many apps on Windows. The best versions to install is the <a href="http://go.microsoft.com/fwlink/?LinkId=528259">.NET Framework 4.6</a>. Some apps may required <a href="http://go.microsoft.com/fwlink/?LinkId=330819">.NET Framework 3.5 SP1</a>. Those two versions should run nearly all .NET apps.</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2>Available .NET Versions</h2>
|
|
<ul id="versions" class="list-group"></ul>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<p class="lead">Developers may want to check out <a href="target-dotnet-platforms.html">Targeting Dotnet Platforms</a> and <a href="targeting-dotnet-versions.html">Targeting .NET Framework Versions</a> to learn more about targeting .NET Framework versions.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
<script>
|
|
document.title = "Install .NET Framework Versions";
|
|
$(document).ready(function() {
|
|
var data;
|
|
var json = "platforms.json";
|
|
$.support.cors = true;
|
|
$.getJSON( json, function( d ) {
|
|
|
|
data = d;
|
|
|
|
$.each(data.platforms, function(key, val)
|
|
{
|
|
|
|
if (val.category == "netfx")
|
|
{
|
|
$("#versions").append("<li class=list-group-item><a href=" + val.runtime[0].link + ">" + val.platform + "</a></li>");
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-65565245-1', 'auto');
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|