首页 > Web开发 > 详细

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

时间:2014-10-06 14:18:10      阅读:313      评论:0      收藏:0      [点我收藏+]

搞.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>

 

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

原文:http://www.cnblogs.com/wucg/p/4008130.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!