• C# asp.net页面常用语法,页面包含


    搞.net开发这么多年,知道和用过包含include指令吗?

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Syntax.aspx.cs" Inherits="HitCounter.MyTests.Syntax" %>
    
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            from: <a href="http://quickstarts.asp.net/QuickStartv20/aspnet/doc/pages/syntax.aspx">来源</a>
            <br />
        <div>
            1. 数据绑定语法:&lt;%# %&gt;
              <br /><br />
            <asp:DataList ID="MyList" runat="server">
                <ItemTemplate>
                    Here is a value: <%# Container.DataItem %>
                </ItemTemplate>
            </asp:DataList>
            <hr />
    
            2. 转义语法: &lt;%: %&gt;
            <h1>
            <%: "<b>Hello,来自主页</b>" %>
            </h1>
            <hr />
    
            3. 这是服务器端的包含语法<br /><br />
            <!-- #Include File="SubContent.html" -->
            <!-- #Include File="SubForm.aspx" -->
            <hr />
    
            4.引用资源配置的语法 &lt;%$ ... %&gt; <br /><br />
            Expression Syntax: &lt;%$ ... %&gt; New in 2.0 ASP.NET 2.0 adds a new declarative expression syntax for substituting values into a page before the page is parsed. This is useful for substituting connection string values or application settings defined in a Web.config file for server control property values. It can also be used to substitute values from a resource file for locaization. More on connection string and resources expressions and expression handlers can be found in the Performing Data Access, Internationalizing Your Application and Extending ASP.NET sections.
            <br />
            <br />
            &lt;asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="&lt;%$ connectionStrings:Pubs %&gt;" SelectCommand="sp_GetAuthors" /&gt;
            <br />
            <br />
            &lt;asp:Label ID="Label1" runat="server" Text="&lt;%$ Resources: ExchRate, ConvertLabel %&gt;" /&gt; </div>
            <br /><br />
        </form>
    </body>
    </html>
  • 相关阅读:
    Faster R-CNN
    06.看板实践——限制在制品
    05.看板方法——在制品
    04.看板实践——工作项
    03.看板实战——工作可视化
    02.看板实践——理解看板
    01.看板实践——学习看板(笔记)
    00.看板实践——前言(笔记)
    00.Scrum指南
    02.有效的项目管理——什么是项目管理
  • 原文地址:https://www.cnblogs.com/wucg/p/4008130.html
Copyright © 2020-2023  润新知