VS 2008 Sound Recording?
Apr 28, 2010Is there a way to record sound from the user and save it on the server in ASP.Net 2.0 or greater?
View 2 RepliesIs there a way to record sound from the user and save it on the server in ASP.Net 2.0 or greater?
View 2 RepliesI want build an application on web which records the audio sound through Mic.
also if you can suggest some third party control which is free.
The technology for Implementation - ASP.NET , C#
we have to develop a enterprize application in asp.net c# and i have to getting a module of voice recording but i dont have any solution about voice recording in asp.net c# for webapplication.
View 2 RepliesI want to record the time and date when a user login to my system..How it is possible?..I want to get date and time and want to insert it into a database table.
View 4 RepliesHow to log MethodName when wrapping Log4net?
I have tons of requests in log4net that show up manually as ": activity". The requests are all manually built and somewhat clumsy. Is there any way for Log4Net to pick up the source function and record that automatically?
I know what i need but i am unsure of the way to acheive it. My idea is to broadcast live event over the internet on website. dont tell basic things like ustream or other streaming websites. I want that my sony 7 MP camera should connect to the PC and broadcast the recording live on my website
View 2 RepliesI need assistance on how to bind Radiobutton to database, so that whatever selection made in Radiobutton will appear in the database
I want to produce an online quiz, that will have the following fuctionality
1. it contain database with , ID, Questions, Option A, B,C, and D, Student Answer.
2.After forming the griedview in connection with the database, i form additonal colum to include Radiobutton where students are to choose the correct option.
3. I was able to configure the gridview which successfully show all the above document but the problem now is how to bind the selected option by students to the database so that i can know wether they choose the right answer or not. i wat the student answer appear in the colum named student answer in the database.
i shall be very grateful , if u can just give simple example that i can perform which shall be able to show the click on radiobutton in database not autopostback in textbox.
I am using a simple Login function and need to record individual field values from MySQL database to compare with inputs.
My connection code:
Dim myConnection As MySqlConnection
Dim myDataAdapter As MySqlDataAdapter
Dim strSQL As String
myConnection = New MySqlConnection("Database=mydatabase;Data Source=xx.xxx.xx.x;port=3362;UId=myID;Password=1234;")
strSQL = "SELECT username,password FROM Login WHERE ID = '" & 1 & "'"
myDataAdapter = New MySqlDataAdapter(strSQL, myConnection)
myDataSet = New Dataset()
myDataAdapter.Fill(myDataSet,"Login")
I have confirmed it is connecting by adding the following GridView.
GridView1.DataSource = myDataSet
GridView1.DataBind()
My problem is isolating the individual field values.
I am using Visual Web Developer 2008 Express with C#. How do I put sound bytes on a Web page?
View 4 RepliesI have ap age I wrote that is a dashboard, so I have the whole page refresh itself rather frequently so the data doesn't get stale. The guys in our dispatch though who are using have lot's of audible alerts, so they keep their volumes way up, and even if it is in the background, the page makes a noise every time it refreshes, and it is driving some of them nuts I guess.
View 1 Repliesi have a control that shows me Messages. it sits in an update panel and constantly polls the server for new messages. This is accessed by multiple users.. My problem is that i need to be able to play a sound when new messages are found.. i have been able to "sorta" do this using soundplayer.. every time it polls it is checking timestamps to determine if a message was added in the last x seconds.. if so.. ding.. that works great.. UNTIL you put it out on the server.. from what i gather.. that will only dingat the server.. (great for the server room... not so much for the users).. i have been googling for hours now.. it seems theres 3.4 billion answers for stuff i don't think im looking for.. but i can't seem to find anything that really does this. I need the Code behind to cause the playing of the sound.. and for all users..
View 4 Replieshow to play wave sound and video by asp.net c#
View 2 RepliesIs there any good way of playing a sound when clicking a button on my web page?? It works great on my local mashine but won't work on the server! I don't want any windows media player or any other window to pop up! Just to play a wav sound!
This is the code that works on my local mashine!
[Code]....
i have tryed belowe code to play sound file and it has working perfectly when i run it in debug mode but after i host it is not working
using IIS 6 and VS 2008
[Code]....
1) user A inputs some data into webpage "a.aspx". When he clicks save button, data is insert into table A and table B.
2) another user B is accessing webpage "b.aspx" or could be away from his desk. To inform user B that he has new incoming data (upon insert into table B from step 1), I was thinking to play a sound to get user B attention that he has new incoming data.
Can I achieve this (play sound) in coding (without interfering with what user B is currently doing)?
Im trying to get started this web site and im having trouble wrapping my head around one of the requirements.
If permission is given then by the user browsiong the site then i need to access their webcam and microphone.
Im thinking this could be done with an activex component but if its already been done then why reinvent the wheel right?
I m using vs2005 & sql2005 I hv a database shown in gridview, wen I select a name (from dropdown of employees) from one of the column in gridview, a mail should go to respective employee with a feature THAT BEEPS INTO HIS SYSTEM 2WICE A DAY AT 2 PARTICULAR TIMES.
View 9 RepliesI have tried the SoundPlayer class in ASP.NET used to give alert when it reachs threshold (value has been set).
When i directly complied from VS2008 its working mean it gives alert sound. But while i open browser the type "localhost/website/default.aspx" in the address bar its not playing (any sound).
My code is here
SoundPlayer objSoundplayer = new SoundPlayer(path);
objSoundplayer.LoadAsync();
objSoundplayer.Play();
objSoundplayer.PlayLooping();
Working with portnumber : localhost:55678/website/default.aspx
Not Working: localhost/website/default.aspx
What worng in this code or need to inculde some more properites.
how to play .mp3 sound in page load?as background music.
View 1 RepliesHow to " Upload Save Retrieve and Play MP4 Video files with live streaming from Database in ASP.Net"..your code is working fine ... but i have one problem . I can only here sounds of video files but VIDEOS are not working.
View 1 RepliesI want to implement sound effect as background in my own website.It should start while opening the website.can u plz give me regarding code in asp.net(c#).
View 1 RepliesI'd like an .aspx webform with the posibillity to upload a sound file to Mixcloud, using the Mixcloud API.
Codebehind written in C#.
-continuation of my question:
example for HumanResource. if an employee's contract is about to be expired, the system will notify the HR system with a messagebox and at the same time with a sound/alert, like a "buzz" or "beep" to notify the HR that the employee should renew their contract.
i use vs 2008 ,
i have timer in my web page,at first i use this code to play the sound(i use this
method in other function):
[Code]....
the problem is that sound file is repeated every one second with my timer.
but this problem did not happen if i use cod(NO1)
In my application, I have users and advisors.Here users can chat with advisors. so if user click the chat initiate button, we are updating the database. Is there any possibility that this update can produce an alert in advisors system with a sound [even if he is working with some other application like watching a movie,checking his email] . (possibly some type of balloon pop up from system tray). If any source code available in C#.
View 2 Replies