1. 程式人生 > >ASP.NET -- WebForm -- .aspx與.aspx.cs檔案

ASP.NET -- WebForm -- .aspx與.aspx.cs檔案

ASP.NET -- WebForm --  .aspx與.aspx.cs檔案

1. ASP.NET -- WebForm(C#)檔案

.aspx檔案:是Html頁面,頁面的佈局,樣式在該檔案中設計。

.aspx.cs檔案:後臺程式碼

.aspx.designer.cs檔案:由工具自動生成的程式碼。

 

新建一個web窗體頁面,在.aspx檔案頂部,有下面這樣一行程式碼必不可少:

 

 

2. 也可以直接在.aspx檔案中直接寫C#後臺程式碼,但要寫在<% %>中。

<%@ Page Language="C#
" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>my Test Aspx</title
> </head> <body> <p><%Response.Write("Hello World!");%></p> <form id="form1" runat="server"> <div> <p><%Response.Write(DateTime.Now.ToLongTimeString());%></p> </div> </form> </body> </html>