Web Forms :: How To Play MP3 Sound In Page Load
Nov 22, 2013how to play .mp3 sound in page load?as background music.
View 1 Replieshow to play .mp3 sound in page load?as background music.
View 1 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)?
I 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 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)
I would like also to know the way to have an embedded video in my site that will not have the play buttons and play again and again. Is there a way to do that??
View 2 RepliesI hv Declared two Master page one Is Base and Derived.. Base Page Load is working but when i hv written load controls in Derived Page Load Using C# it's not working..
View 3 RepliesI am new to video streaming.
I want to play a live video in aspx page.
How to do that.
how to play a music whenever the home/any page is opened.
View 1 Replieshow i can load an panel(that contain for example Weather information) after page load
View 2 RepliesI have created a web-page where I have to paly .swf file. My code is working fine and swf file is played perfectly in Internet Explorer but not in mozilla firefox. Below is my code :-
[Code]....
i 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 RepliesI wants to a play a video on page loading. On pageload the video was not display. But i refresh the page then video play. After that also play ...
What is the problem on page loading?
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 " 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'd like an .aspx webform with the posibillity to upload a sound file to Mixcloud, using the Mixcloud API.
Codebehind written in C#.
How could i paly a video & audio file on an asp.net page so that the file is determined on the run time
View 2 RepliesHow do I insert and play swf or flv file into aspx page? I do not want to use silverlight for that purpose.
View 1 RepliesI am trying to create a progress bar for page load as it takes long to load. I need help to resolve jscript error 'null' is null or not an object on line $get("btn").click();
[Code]....
Control ctrl = new Control();
this.PlaceHolder1.Controls.Clear();
ctrl = Page.LoadControl("uc1.ascx");
ctrl.ID = "DynamicCtrl";
this.PlaceHolder1.Controls.Add(ctrl);
instead of using a control to load can we load a page .. like example.aspx
page mypage=new page();
mypage= Page.Load("example.aspx");
how to do this. as i am getting the erro
I have a update panel on the ASPX page,When thepage loads the content in the update panel shouldnot load ( Update panel should show the Updatepanel progress control) but after page load update panel contents should load . How do i get this efect.
View 3 Replieswe are creating a custom content management and out portal page is bit bulky it is about 60Kb without images.
and during loading the page in some browser we can see some parts of site load faster than the other parts of the site where as we want to indicate (or instruct the web server) to load some of the areas first then load rest of the page.
is there any particular setting in IIS for is there any particular method in classic asp for doing that?
also I have the same question in asp.net.