我在使用的語法中有點混淆MVC。請告訴我什麼是這兩個參數之間的區別如下記載:
<%= Html.LabelFor(model=> model.studFatherName) %>
和
<%: Html.LabelFor(model=> model.studFatherName) %>
Synthical difference b/w <%= Html.LabelFor(model => model.studFatherName)%>和<%:Html.LabelFor(model => model.studFatherName)%>
0
A
回答
2
<%: %>
用於HTML編碼值,而<%= %>
輸出值不變。例如:
<%= "<br/>" %>
呈現爲<br/>
而<%: %>
呈現爲<br/>
。但有一個例外。如果參數是IHtmlString
,則<%: %>
的行爲與<%= %>
的行爲完全相同,即它不編碼該值。並且由於LabelFor
幫手返回IHtmlString <%: Html.LabelFor(x => x.studFatherName) %>
絕對等效於<%= Html.LabelFor(x => x.studFatherName) %>
。
相關問題
- 1. 擴展MVC3剃刀Html.LabelFor上添加一個EditorTemplate</p> <pre><code>@Html.LabelFor(model => model.Name, new { @class = "myLabel" }) </code></pre> <p>我的意料例如CSS類
- 2. 如何將RealmResults <Model>轉換爲ArrayList <Model>?
- 3. 約束違規,列表<Model<Type1>>至列表<Model<Type2>>
- 4. 如何在同一頁面使用@model IEnumerable <>和@model <> MVC 5
- 5. 如何在同一頁面(List/Create)使用@model IEnumerable <>和@model <> MVC3
- 6. Symfony FORMS:{'model'=> $ this-> getRelatedModelName('model')}和{'model'=>'model'}在setWidgets中的差異
- 7. MVC 3 Razor @model與使用@ Model.pName與@ Html.LabelFor(model => model.pName)打印屬性的模型
- 8. CakePHP:Model-> Model-> find()
- 9. 如何將List <AnonymousType#1>轉換爲列表<Model>?
- 10. 解析Expression <Func <Entity,bool >>到Model?
- 11. MVC強類型IQueryable <IGrouping <TKey,TElement >> model
- 12. NameError:未初始化的常量<Model>:<column_name>
- 13. Dictionary <short,Dictionary <EnFunction,bool >> model binding not working
- 14. 有鑑於<code>model</code>新屬性
- 15. 獲取在與筆者<code>model</code>用(<code>ForeignKey).</code>使用<code>Post.objects.all()</code>得到的Django
- 16. Tastypie:外地排序?</p> <pre><code>www.yourbaseurl.com/api/v1/model/?order_by=field_to_sort_by </code></pre> <p>你怎麼外國字段順序:
- 17. CakePHP $ this-> model->查詢
- 18. 使<b></b><i></i><u>在文本框</u>和<br>
- 19. 浮動元素<br /><br /><br /><br /><br /\><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
- 20. Asp.net Core List <enum> in model
- 21. NoMethodError(undefined method'highlight'for#<Elasticsearch :: Model :: Response :: Result>
- 22. Angular:ng-model directive not working with'<span>`element
- 23. 郵冊<Model>從形式MVC
- 24. 刪除列表<Model>(ASP MVC 5)
- 25. Rails:ActiveRecord :: RecordNotFound,找不到<model> id = num
- 26. 選擇不<code>ControllerA</code></p> <pre><code><select ng-model="selecteditem" ng-change="selectedItem(selecteditem)" ng-options="item.id as item.name for item in items" ></select> </code></pre> <p>綁定到一個值時,從狀態回報
- 27. 的Grails:前</p> <pre><code><g:if test="${foo.bar}"> </code></pre> <p>和</p> <pre><code><g:if test="\${foo.bar}"> </code></pre> <p>使用 「\」 的真正爲例:\ $ {}和$ {}
- 28. <ice:outputMedia>和<ui:repeat>
- 29. <a>和<button>
- 30. '<seg>`和`<span>`
可能的重複[MVC2如何<%:標記不同於<%=](http://stackoverflow.com/questions/3916386/mvc2-how-is-tag-different-to) – Jon 2012-02-21 06:56:33