I have been developing the code which records the audio in the client side. Well, I enclosed the code for recording , which is working fine in Visual studio under project development but not working in website app development in visual studio
// for recording ( _)
mciSendString("open new Type waveaudio Alias recsound", Nothing, 0, 0)
mciSendString("record recsound", Nothing, 0, 0)
// for storing
mciSendString("save recsound c:\record.wav", "", 0, 0)
mciSendString("close recsound", "", 0, 0)
It doesn't work, can any one say wats wrong in this code PS: I read some of the threads related to this question in stackoverflow but it doesn't help me much