Click here to Skip to main content
15,909,896 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: call asp.net members from html page Pin
Tad McClellan29-Jan-08 18:57
professionalTad McClellan29-Jan-08 18:57 
GeneralRe: call asp.net members from html page Pin
Not Active29-Jan-08 14:39
mentorNot Active29-Jan-08 14:39 
GeneralRe: call asp.net members from html page Pin
Shimmy Weitzhandler30-Jan-08 1:16
Shimmy Weitzhandler30-Jan-08 1:16 
GeneralJ2EE vs .NET Pin
ChrisFarrugia29-Jan-08 6:03
ChrisFarrugia29-Jan-08 6:03 
GeneralWrong forum Pin
pmarfleet29-Jan-08 10:45
pmarfleet29-Jan-08 10:45 
GeneralRe: Wrong forum Pin
ChrisFarrugia29-Jan-08 11:25
ChrisFarrugia29-Jan-08 11:25 
QuestionHow to upload an excel file to ftp server Pin
Shahid Bilal29-Jan-08 5:59
Shahid Bilal29-Jan-08 5:59 
GeneralVoice recording is not working in server Pin
Lijo Rajan29-Jan-08 5:24
Lijo Rajan29-Jan-08 5:24 
Hai all ,

I have used the folliwing code to record voice in my application.


using Microsoft.VisualBasic.Devices;
using Microsoft.VisualBasic;using System.Runtime.InteropServices;

public partial class record : System.Web.UI.Page
{
[DllImport("winmm.dll", EntryPoint = "mciSendStringA", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
private static extern int mciSendString(string lpstrCommand, string lpstrReturnString, int uReturnLength, int hwndCallback);
protected void Page_Load(object sender, EventArgs e)
{
}

protected void Button1_Click(object sender, EventArgs e)
{
// record from microphone
mciSendString("open new Type waveaudio Alias recsound", "", 0, 0);
mciSendString("record recsound", "", 0, 0);


}
protected void Button2_Click(object sender, EventArgs e)
{
// stop and save
mciSendString("save recsound c:\\lijo.wav", "", 0, 0);
mciSendString("close recsound ", "", 0, 0);
Computer c = new Computer();
c.Audio.Stop();
}
protected void Button3_Click(object sender, EventArgs e)
{
Computer computer = new Computer();
computer.Audio.Play("c:\\lijo.wav", AudioPlayMode.Background);

}
}

it is perfectly working in my local system.But when i uploaded into sver it is showing the following error.

Security Exception

Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

Exception Details: System.Security.SecurityException: System.Security.Permissions.SecurityPermission

Source Error:

Line 28: mciSendString("record recsound", "", 0, 0);
Line 29:
Line 30: }
Line 31: protected void Button2_Click(object sender, EventArgs e)
Line 32: {

plse help me its urgent.
Thanks in advance
regrds
Lijo
GeneralRe: Voice recording is not working in server Pin
rahul145511-Mar-10 19:25
rahul145511-Mar-10 19:25 
GeneralViewstate loading takes too long Pin
Manny Castillo29-Jan-08 4:41
Manny Castillo29-Jan-08 4:41 
QuestionRe: Viewstate loading takes too long Pin
newc129-Jan-08 5:51
newc129-Jan-08 5:51 
GeneralGridView Sort on each page Pin
ss.mmm29-Jan-08 4:41
ss.mmm29-Jan-08 4:41 
GeneralRe: GridView Sort on each page Pin
bokuceres29-Jan-08 22:48
bokuceres29-Jan-08 22:48 
Generaldropdown list Pin
newbieAl29-Jan-08 3:52
newbieAl29-Jan-08 3:52 
GeneralRe: dropdown list Pin
newc129-Jan-08 4:37
newc129-Jan-08 4:37 
AnswerRe: dropdown list Pin
newbieAl29-Jan-08 4:50
newbieAl29-Jan-08 4:50 
Generalpdf library support unicode Pin
sepel29-Jan-08 3:11
sepel29-Jan-08 3:11 
QuestionRe: pdf library support unicode Pin
Vasudevan Deepak Kumar29-Jan-08 4:16
Vasudevan Deepak Kumar29-Jan-08 4:16 
Questionhow to display thumbnail of an image using asp.net csharp coding Pin
googlejumbo29-Jan-08 2:57
googlejumbo29-Jan-08 2:57 
AnswerRe: how to display thumbnail of an image using asp.net csharp coding Pin
Vasudevan Deepak Kumar29-Jan-08 3:04
Vasudevan Deepak Kumar29-Jan-08 3:04 
AnswerRe: how to display thumbnail of an image using asp.net csharp coding Pin
Not Active29-Jan-08 3:04
mentorNot Active29-Jan-08 3:04 
QuestionHow to use www.sample.com?sample=sample Pin
Shimmy Weitzhandler29-Jan-08 2:56
Shimmy Weitzhandler29-Jan-08 2:56 
AnswerRe: How to use www.sample.com?sample=sample Pin
Guffa29-Jan-08 7:08
Guffa29-Jan-08 7:08 
QuestionHow can I execute query...? Pin
Vanamaindia29-Jan-08 2:47
Vanamaindia29-Jan-08 2:47 
AnswerRe: How can I execute query...? Pin
Not Active29-Jan-08 3:00
mentorNot Active29-Jan-08 3:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.