Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I have to make a BMI Calculator on Visual Studio for my Capstone Course. I have what I believe is the correct code, but any

I have to make a BMI Calculator on Visual Studio for my Capstone Course. I have what I believe is the correct code, but any time I run the application, it won't do the calculation. I am linking the BMI.aspx code as well as the BMI.aspx.vb code. Thanks in advance.

<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/KSU Health and Healing.Master" CodeBehind="BMI.aspx.vb" Inherits="KSUBMI.BMI" %>

BMI Calculator

Please fill out this web form!

First Name:

Your Age: Must be between 1 and 100

Email Address:

Your Weight (in lbs): Cannot be empty or zero

Your Height (in inches): Cannot be empty or zero

Here are your results:

Public Class BMI Inherits System.Web.UI.Page Protected Sub ButtonCalculate_Click(sender As Object, e As EventArgs) Handles ButtonCalculate.Click Dim Weight As Double = TextWeight.Text Dim Height As Double = TextHeight.Text Dim Result As Double = (Weight * 703) / (Height * Height) LabelBMI.Text = Result

If Result < 18.5 Then LabelResults.Text = "Underweight" ElseIf Result >= 18.5 Or Result < 24.9 Then LabelResults.Text = "Normal weight" ElseIf Result >= 25 Or Result < 29.9 Then LabelResults.Text = "Overweight" ElseIf Result >= 30 Then LabelResults.Text = "Obese" End If End Sub Protected Sub ButtonClear_Click(sender As Object, e As EventArgs) Handles ButtonClear.Click TextName.Text = "" TextAge.Text = "" TextEmail.Text = "" TextWeight.Text = "" TextHeight.Text = "" LabelResults.Text = ""

TextName.Focus() End Sub

End Class

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

How Do I Use A Database Research Tools You Can Use

Authors: Laura La Bella

1st Edition

1622753763, 978-1622753765

More Books

Students also viewed these Databases questions

Question

2. Develop a persuasive topic and thesis

Answered: 1 week ago

Question

1. Define the goals of persuasive speaking

Answered: 1 week ago