exercise1.aspx

来自「asp入门到精通的源代码」· ASPX 代码 · 共 18 行

ASPX
18
字号
<%@ Page Inherits="ExchangeCalculator" src="exercise1.vb" %>

<html><body>
   <font size="5">Currency Calculator</font><hr>
   <form runat="server">
      <asp:Label id="lblCurrency" runat="server"/>
      <asp:TextBox id="tbValue" runat="server"/> to
      <asp:ListBox id="lbRegion" runat="server"
         Size=1 
         AutoPostBack=true>
         <asp:ListItem>en-US</asp:ListItem>
         <asp:ListItem>fr</asp:ListItem>
         <asp:ListItem>de</asp:ListItem>
         <asp:ListItem>ja</asp:ListItem>
      </asp:ListBox>
   </form>
   <asp:Label id="lblAnswer" runat="server"/>
</body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?