<%$ %>
擷取App_GlobalResources中message.resx檔案中的B0011對應的字串 <asp:Button ID="btnExecute" runat="server" CssClass="pressedbutton" Font-Bold="True" Text="<%$ Resources:Message, B0011 %>" />
擷取App_LocalResource中***.aspx.resx檔案中的ShoriYm對應的字串 <asp:Label ID="lblShoriYm" runat="server" CssClass="label_02" Text="<%$ Resources:ShoriYm%>" ></asp:Label></td>
擷取web.config檔案中的資料庫連接字串 <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$connectionStrings:Pubs %>" SelectCommand="select * from catalog"></asp:SqlDataSource>
<%# %>
資料繫結
<asp:Label ID="lblId" runat="server" Text='<%#Eval("MenuBig_Id") %>' Visible="false"></asp:Label>
<%= %>
是在用戶端擷取伺服器端的變數,後台往前台傳值
<asp:Label ID="Label2" runat="server" CssClass="label" Width="255px"><%=testStr%></asp:Label>
有一個<%= ...%> 這個=號後也可以調用C#的方法,還可以寫數學運算式。 它和 <%#....%> 的區別是, <%#....%> 中的內容必須在後台代碼中執行了DataBind()方法後才顯示。