Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[COLOR=blue]string[/color] text = yourTextBox.Text;
[COLOR=blue]try[/color]
{
[COLOR=blue]double[/color] yourNum = [COLOR=blue]double[/color].Parse(text);
[COLOR=green]// text IS a number ...[/color]
}
[COLOR=blue]catch[/color]
{
[COLOR=green]// text IS NOT a number ...[/color]
}