Asp.net server-side code block explanations

前端 未结 1 801
生来不讨喜
生来不讨喜 2020-12-08 16:28

I\'ve seen many different types of server side code blocks in aspx but never a simple key for what each means. I know some of these but it\'s really hard to search for symb

相关标签:
1条回答
  • 2020-12-08 17:12
    • <% %> - Server side code
    • <%-- --%> - Server Side Comment
    • <%@ %> - Page Directive
    • <%= %> - Display value
    • <%: %> - HTML Encode
    • <%$ %> - Datasource Expression
    • <%# %> - Binding Expression

    You can find a bit more information about some of them at "ASP.NET Page Syntax".

    0 讨论(0)
提交回复
热议问题