-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProject_Readme.html
152 lines (132 loc) · 5.35 KB
/
Project_Readme.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta charset="utf-8" />
<title>La aplicación ASP.NET</title>
<style>
body {
background: #fff;
color: #505050;
font: 14px 'Segoe UI', tahoma, arial, helvetica, sans-serif;
margin: 20px;
padding: 0;
}
#header {
background: #efefef;
padding: 0;
}
h1 {
font-size: 48px;
font-weight: normal;
margin: 0;
padding: 0 30px;
line-height: 150px;
}
p {
font-size: 20px;
color: #fff;
background: #969696;
padding: 0 30px;
line-height: 50px;
}
#main {
padding: 5px 30px;
}
.section {
width: 21.7%;
float: left;
margin: 0 0 0 4%;
}
.section h2 {
font-size: 13px;
text-transform: uppercase;
margin: 0;
border-bottom: 1px solid silver;
padding-bottom: 12px;
margin-bottom: 8px;
}
.section.first {
margin-left: 0;
}
.section.first h2 {
font-size: 24px;
text-transform: none;
margin-bottom: 25px;
border: none;
}
.section.first li {
border-top: 1px solid silver;
padding: 8px 0;
}
.section.last {
margin-right: 0;
}
ul {
list-style: none;
padding: 0;
margin: 0;
line-height: 20px;
}
li {
padding: 4px 0;
}
a {
color: #267cb2;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="header">
<h1>La aplicación ASP.NET</h1>
<p>¡Enhorabuena! Ha creado un proyecto</p>
</div>
<div id="main">
<div class="section first">
<h2>Esta aplicación consta de lo siguiente:</h2>
<ul>
<li>Páginas de ejemplo que muestran la navegación básica entre Inicio, Acerca de y contacto</li>
<li>Creación de temas mediante <a href="http://go.microsoft.com/fwlink/?LinkID=615519">Bootstrap</a></li>
<li>La opción <a href="http://go.microsoft.com/fwlink/?LinkID=615520">Autenticación</a>, si se selecciona, muestra cómo registrarse e iniciar sesión</li>
<li>Características ASP.NET administradas mediante <a href="http://go.microsoft.com/fwlink/?LinkID=320756">NuGet</a></li>
</ul>
</div>
<div class="section">
<h2>Personalizar la aplicación</h2>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615541">Introducción a ASP.NET MVC</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615523">Cambiar el tema del sitio</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615524">Agregar más bibliotecas mediante NuGet</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615542">Configurar la autenticación</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615526">Personalizar la información sobre los usuarios del sitio web</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615527">Obtener información de los proveedores de redes sociales</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615528">Agregar servicios HTTP mediante ASP.NET Web API</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615529">Establecer la seguridad de la API web</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615530">Agregar web en tiempo real mediante ASP.NET SignalR</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615531">Agregar componentes mediante Scaffolding</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615532">Probar la aplicación mediante un Browser Link</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615533">Compartir el proyecto</a></li>
</ul>
</div>
<div class="section">
<h2>Implementar</h2>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615534">Asegurarse de que la aplicación esté lista para el entorno de producción</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615535">Microsoft Azure</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615536">Proveedores de hospedaje</a></li>
</ul>
</div>
<div class="section last">
<h2>Obtener ayuda</h2>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615537">Obtener ayuda</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=615538">Obtener más plantillas</a></li>
</ul>
</div>
</div>
</body>
</html>