岁月如诗

导航

ASPX开发基础

ASP.NET:.net开发网站应用程序的技术总称,分为WebForm和MVC

 

表单元素:

文本类:(1)<input type=“text”/> 文本框

           (2)<input type=“password”/> 密码框

           (3)<textarea> </textarea>文本域

           (4)<input type=“hidden”/> 隐藏域

按钮类:(1)<input type=“button”  value=“按钮1”/>

           (2)<input type=“submit”  value=“提交”/>

           (3)<input type=“reset”     value=“重置”/>

           (4)<input type=“image”    src=“图片路径”/>

选择类:(1)复选框 - <input type="checkbox"  id=“ck1” checked=“checked”/><label for=“ck1”></label>

           (2)单选框 - <input type="radio” id=“ra1” name=“sex” checked=“checked”/>

           (3)下拉列表 - <select>

                                 <option>内容</option>

                                 <option>内容</option>

                                 </select>

           (4)文件选择 - <input type="file"/> 

控件属性:
           Label - BackColor 等等 最后都会变成html里面的东西

           控件最后都会变成 HTML元素

           界面,布局样式都依然使用HTML+CSS
           特殊的数据交互需要控件来替代

           含有 runat="server" 属性的元素为控件

posted on 2016-09-19 16:26  镜花水月☪  阅读(1141)  评论(0编辑  收藏  举报