Visual studio c# using asp.net web application
Create a script that presents a word guessing game. allow users to guess the word one letter at a time by entering a character in a form. start by assigning secret word to a variable. after each guess, print the word using asterisks for each remaining letter, but fill in the letter that the user guessed correctly. for example, if the word you want to user to guess is suspicious and the user has successfully guessed the letters s and i, then you would store s*s*i*i**s in the form field. use response.write to show that
I need the program in visual studio c# using asp.net web application
all I need the code in .aspx and aspx.cs.