ASP.NET 웹 페이지 - 가이드

ASP.NET은 HTML, CSS, JavaScript 및 서버 스크립트를 통해 웹 페이지와 웹사이트를 구축하는 데 사용되는 오픈 프레임워크입니다.

ASP.NET은 세 가지 오픈 모드를 지원합니다:

웹 페이지, MVC (모델 뷰 컨트롤러) 및 웹 포맷.

this tutorial explains WEB PAGES.

Web Pages MVC Web Forms

where to start?

many developers like to learn new technologies by reading examples.

if you need to view a Web Pages example, please visit this ASP.NET Web Pages demo.

use 'Run Code' to improve learning efficiency

our 'Run Code' feature can reduce the difficulty of learning Web Pages.

this feature will display and run ASP.NET code and output HTML.

click the 'Run Code' button to see how it works:

Web Pages 예제

<html>
<body>
     <h1>Hello Web Pages</h1>
     <p>The time is @DateTime.Now</p>
</body>
</html>

run instance

what is Web Pages?

Web Pages is one of the three ASP.NET programming models used to create ASP.NET websites and web applications.

the other two programming models are Web Forms and MVC (Model, View, Controller).

Web Pages is the simplest ASP.NET web page development programming model. It provides a simple way to combine HTML, CSS, JavaScript, and server code:

  • easy to learn, read, and use
  • constructed around a single web page
  • similar to PHP and ASP
  • server scripts use Visual Basic or C#
  • complete control over HTML, CSS, JavaScript

Web Pages can be extended through programmable Web Helpers, including databases, videos, images, social networks, and more.

Web Pages tutorial

if you are a beginner in ASP.NET, then Web Pages is an excellent starting point.

in our Web Pages tutorial, you will learn how to combine HTML, CSS, JavaScript with server code by using the latest Razor server markup syntax of Visual Basic and C#.

you will also learn how to extend web pages using programmable Web Helpers, including databases, videos, images, social networks, and more.

Web Pages 예제

learn through examples!

because ASP.NET code is executed on the server, you cannot view the code in the browser. You can only see the pure HTML output.

CodeW3C.com에서는 각 예제가 숨겨진 ASP.NET 코드를 보여줍니다. 이는 그 작동 원리를 더 쉽게 이해하는 데 도움이 됩니다.

Web Pages 예제

Web Pages 참조 매뉴얼

이 튜토리얼은 완전한 ASP.NET 참조 매뉴얼을 제공하며, 객체, 구성 요소, 속성 및 메서드를 포함합니다.

Web Pages 참조 매뉴얼

우리는 WebMatrix를 사용합니다

이 튜토리얼에서 우리는 WebMatrix를 사용합니다.

WebMatrix는 간단하지만 강력한 무료 ASP.NET 개발 도구로, 마이크로소프트가 Web Pages를 위해 특별히 개발했습니다.

WebMatrix는 포함된 내용:

  • Web Pages 예제 및 템플릿
  • 웹 서버 언어(VB 또는 C#을 사용하는 Razor)
  • 웹 서버(IIS Express)
  • 데이터베이스 서버(SQL Server Compact)
  • 완전한 웹 개발 프레임워크(ASP.NET)

WebMatrix를 통해 빈 사이트나 빈 웹 페이지를부터 시작하거나 "Web Application Gallery"에서 오픈 소스 애플리케이션을 구축할 수 있습니다. PHP 및 ASP.NET 애플리케이션(예: Umbraco, DotNetNuke, Drupal, Joomla, WordPress 등)이 사용 가능하며, WebMatrix는 보안, 검색 엔진 최적화 및 웹 배포에 대한 내장 도구를 제공합니다.

WebMatrix를 사용하여 개발한 기술과 코드는 전문적인 ASP.NET 애플리케이션으로 원활하게 전환될 수 있습니다.

WebMatrix를 사용하려면 다음 링크를 사용하여 설치하십시오:

http://www.microsoft.com/web/gallery/install.aspx?appid=WebMatrix