Use Visual Studio 2005's text editor, XHTML elements, and Web Server Controls, and C# methods to construct the following ASP.NET interactive interest calculator.
nnLab1 where nn is your cs351 account number.
Add an event handler for the Calcuate Interest button to calculate the simple interest accrued based on the following formula:
calculatedInterest = loanAmount * interestRate * numberOfYearsDisplay the calculated interest underneath the fieldset as shown on the screen snapshot.
The Reset button should set all controls back to their default values and clear the calculated interest output (if any)
The Convert class methods can be used convert strings to numeric values. For example:
double loanAmount = Convert.ToDouble(LoanAmountTextBox.Text);The String.Format method using format strings is the easiest way to produce the output. See String Formatting in C# for an explanation of the formatting specifiers.
Lab 1 is an in-class assignment begun on Wednesday and due by the start of class on Friday
nnLab1 folder