zoukankan      html  css  js  c++  java
  • HtmlHelp

    @Html.Label("Label", "Label") @*渲染成<label for="Label">Label</label>*@
    @Html.Hidden("Hidden","Hidden") @*渲染成 <input id="id" name="id" type="hidden" value="2669-0" />*@
    @Html.TextBox("TextBox", "TextBox", new { color="red",font="2",size="3" }) @*渲染成<input id="TextBox" name="TextBox" type="text" value="TextBox" />*@
    @Html.TextArea("TextArea", "TextArea", new { color="black",size="3"}) @*渲染成<textarea cols="20" id="TextArea" name="TextArea" rows="2">TextArea</textarea>*@
    @Html.Editor("Editor", "Editor", new { color="yellow",size="3"}) @*渲染成<input class="text-box single-line" id="Editor" name="Editor" type="text" value="" />*@
    @Html.Password("PassWord", "PassWord", new { color="yellow",size="3"}) @*渲染成<input id="PassWord" name="PassWord" type="password" value="PassWord" />*@
    
    
    @Html.Raw("<div>hello word</div>") @*输出hello word//*@
  • 相关阅读:
    socketserver模块
    socketserver密文测试
    Less11-Less12
    Less-5-03
    google语法
    Nmap
    01真的很简单
    kali linux 安装后的必要修改
    SQLMap-02
    SQLMap-01
  • 原文地址:https://www.cnblogs.com/sumg/p/3744811.html
Copyright © 2011-2022 走看看