Here is the code
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:TextBox ID="txtWord" runat="server"/>
- <asp:Button ID="btnSubmit" runat="server" Text="Speack Word" OnClick="btnSubmit_Click"/>
- </div>
- </form>
- </body>
- using SpeechLib;
- protected void btnSubmit_Click(object sender, EventArgs e)
- {
- //Create Voice Object
- //Add text for speach
- SpVoice voice = new SpVoice();
- voice.Speak(txtWord.Text);
- }

SubashPosted Aug 23, 2016, 12:37 AM
Is any thirdparty reference???
SubashPosted Aug 23, 2016, 12:36 AM
Where we get speech liberary
SubashPosted Aug 23, 2016, 12:36 AM
Nice
Mahesh AllePosted Apr 20, 2015, 1:31 AM
Good one....
Khargesh RajputPosted Apr 17, 2015, 5:04 AM
Its working nice thanks for sharing
Khargesh RajputPosted Apr 17, 2015, 3:15 AM
I think here it should be add reference for liberary http://aswinialuri.blogspot.in/2013/11/speech-recognition.html
Khargesh RajputPosted Apr 17, 2015, 3:11 AM
SpeechLib Library not available, how do you import it
Santhakumar MunuswamyPosted Apr 16, 2015, 3:03 PM
good one
Karthik Muthu KaruppanPosted Apr 16, 2015, 11:30 AM
Nice