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>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM