⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 compound.ascx

📁 Microsoft?ASP.NET Programming with Microsoft Visual C#?.NET Version 2003 Step By Step
💻 ASCX
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -