compound.ascx

来自「Microsoft?ASP.NET Programming with Micro」· ASCX 代码 · 共 25 行

ASCX
25
字号
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="Compound.ascx.cs" Inherits="Chapter_07.Compound" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
<P>
	<asp:Label id="Label1" runat="server" Font-Bold="True" Font-Size="Large">Compound Interest Calculator</asp:Label></P>
<P>
	<asp:Label id="Label2" runat="server">Principal ($):</asp:Label>
	<asp:TextBox id="TextBox1" runat="server"></asp:TextBox></P>
<P>
	<asp:Label id="Label3" runat="server">Rate (%):</asp:Label>
	<asp:TextBox id="TextBox2" runat="server"></asp:TextBox></P>
<P>
	<asp:Label id="Label4" runat="server">Years:</asp:Label>
	<asp:TextBox id="TextBox3" runat="server"></asp:TextBox></P>
<P>
	<asp:Label id="Label5" runat="server">Compounding Frequency:</asp:Label>
	<asp:DropDownList id="DropDownList1" runat="server">
		<asp:ListItem Value="1">Annually</asp:ListItem>
		<asp:ListItem Value="4">Quarterly</asp:ListItem>
		<asp:ListItem Value="12">Monthly</asp:ListItem>
		<asp:ListItem Value="365">Daily</asp:ListItem>
	</asp:DropDownList></P>
<P>
	<asp:Button id="Button1" runat="server" Text="Calculate"></asp:Button></P>
<P>
	<asp:Label id="Label6" runat="server"></asp:Label></P>

⌨️ 快捷键说明

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