📄 web_intrensic.aspx
字号:
<%@ Import Namespace="System.Data" %>
<html>
<body style="background-color='beige'; font-family='verdana'; font-size='10pt'">
<h3><font face="Verdana">Intrensic Web Controls</font></h3>
<form runat="server">
Text Box:<asp:TextBox id="Text1" runat="server"/>
Password :<asp:TextBox id="Text2" TextMode="Password" runat="server"/>
MultiLine: <asp:TextBox id="Text3" TextMode="Multiline" rows="4" runat="server"/>
<hr>
<B>Check Box</B><br>
<asp:CheckBox runat="server" Text="CheckBox1" Checked="True"></asp:CheckBox><br>
<B>Radio Button</B><br>
<asp:RadioButton runat="server" Text="RadioButton1" GroupName="Group1" Checked="true">
</asp:RadioButton>
<asp:RadioButton runat="server" Text="RadioButton2" GroupName="Group1"></asp:RadioButton>
<hr>
<B>CheckBoxLists</B><br>
<asp:CheckBoxList runat="server">
<asp:ListItem Text="Choice1" Value="1" selected="true"/>
<asp:ListItem Text="Choice2" Value="2" selected="true"/>
</asp:CheckBoxList >
<B>RadioButtonList</B>
<asp:RadioButtonList runat="server" RepeatDirection= "horizontal">
<asp:ListItem Text="Choice1" Value="1" selected="true"/>
<asp:ListItem Text="Choice2" Value="2"/>
</asp:RadioButtonList >
<hr>
<B>DropDownList</B>
<asp:DropDownList runat="server">
<asp:ListItem Text="Choice1" Value="1" selected="true"/>
<asp:ListItem Text="Choice2" Value="2"/>
</asp:DropDownList>
<B>ListBox</B>
<asp:ListBox runat="server" SelectionMode="Multiple">
<asp:ListItem Text="Choice1" Value="1" selected="true"/>
<asp:ListItem Text="Choice2" Value="2"/>
</asp:ListBox>
<hr>
Button :<asp:Button runat="server" Text="Click Me"></asp:Button><br><br>
LinkButton :<asp:LinkButton runat="server" Text="Click Me"></asp:linkButton><br><br>
ImageButton: <asp:ImageButton runat="server" ImageUrl="gifcon.gif"></asp:ImageButton><br><br>
Hyperlink : <asp:HyperLink runat="server" Text="HyperLink" NavigateUrl="web_intrensic.aspx"></asp:HyperLink><br><br>
Image :<asp:Image runat="server" ImageUrl="gifcon.gif"></asp:Image>
<br>
<asp:Panel runat="server"></asp:Panel>
<hr>
<B>Table</B>
<asp:Table runat="server" GridLines="Both" BorderWidth="1px">
<asp:TableRow>
<asp:TableCell>Column1</asp:TableCell>
<asp:TableCell>Column2</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Column3</asp:TableCell>
<asp:TableCell>Column4</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -