62 lines
2.2 KiB
HTML
62 lines
2.2 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">
|
|
<!--
|
|
__ __ _ _ _ _____ _____
|
|
\ \ / /__ _ _ __ _ ___| |_ ___ | \ | | ____|_ _|
|
|
\ V / _ \| | | | / _` |/ _ \ __/ __| | \| | _| | |
|
|
| | (_) | |_| | | (_| | __/ |_\__ \ _| |\ | |___ | |
|
|
|_|\___/ \__,_| \__, |\___|\__|___/ (_)_| \_|_____| |_|
|
|
|___/
|
|
-->
|
|
</head>
|
|
<body>
|
|
|
|
<h1>
|
|
<img src="http://i.microsoft.com/net/images/chrome/net-logo.jpg" />
|
|
Install the .NET Framework</h1>
|
|
|
|
<p>You need to install the .NET Framework to run many apps on Windows. The best versions to install are the .NET Framework 4.6 and the <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 class="col-sm-4">
|
|
<ul id="versions" class="list-group"></ul>
|
|
</div>
|
|
<div class="row"></div>
|
|
|
|
<p>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>
|
|
|
|
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"/>
|
|
<style>
|
|
li {font-size: 14pt;}
|
|
div {font-size: 12pt;}
|
|
</style>
|
|
<script>
|
|
document.title = "Install .NET Framework Versions";
|
|
$(document).ready(function() {
|
|
var data;
|
|
var json = "https://dotnetweb.blob.core.windows.net/platforms/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>
|
|
|
|
</body>
|
|
</html> |