ASP.NET 基礎入門 Hello World

在開始前要先建立專案及項目

新增專案

檔案>新增>專案

ASP.NET 空網站

加入新項目

在專案目錄最外層,右鍵>加入>加入新項目 Web表單

簡單練習輸出文字

Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<% 
    string mytxt = "Hello World"; 
    HelloWorldLabel.Text = "Hello World2";
%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <div>
        輸出文字:
        <% Response.Write(mytxt); %> 
        ,也可以這樣寫:
        <%=mytxt %>
    </div>
    <div>
         <asp:Label runat="server" id="HelloWorldLabel"></asp:Label>
    </div>
</body>
</html>

每一個 aspx 檔案都會有對應的 code behind

點選目錄中的 Default.aspx.cs 或者按F7 就能切換

預設這裡面都僅會有基本框架

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        
    }
}

https://www.tutorialspoint.com/asp.net/index.htm