Web Forms :: Control The System Volume Using Javascript / Jquery?
Mar 8, 2010
I am using media player to play audio and video. I am creating own button to increase and decrease the volume of the media player. working fine too.
Problem:
Even after reaches 0% volume its audible. If the player volume increase the system volume also be increased. Is it possible. How to achieve this task.
Control:
<object id="mediaPlayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" height="1" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" width="1"> <param name="fileName" value="" /> <param name="animationatStart" value="true" /> <param name="transparentatStart" value="true" /> <param name="autoStart" value="true" /> <param name="showControls" value="true" /> <param name="volume" value="70" /></object>
Code:
function decAudio() { if (document.mediaPlayer.Volume >= -1000) { var newVolume = document.mediaPlayer.Volume - 100; if (newVolume >= -1000) { document.mediaPlayer.Volume = document.mediaPlayer.Volume - 100; } else { document.mediaPlayer.Volume = -1000; } } }
View 1 Replies
Similar Messages:
Mar 9, 2010
I am using media player to play audio and video. I am creating own button to increase and decrease the volume of the media player. working fine too.
Problem:
Even after reaches 0% volume its audible. If the player volume increase the system volume also be increased. Is it possible. How to achieve this task.
Control:
<object id="mediaPlayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
height="1" standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject" width="1">
[Code]....
View 2 Replies
Nov 22, 2010
Is there anyway of using jquery or javascript on datalist control. i want to do this:i list products on datalist. productname,code,price etc. alos there are 2 buttons.basket and buy. when i cick basket button, the product will add shopping basket without being postback.
View 1 Replies
Feb 22, 2013
I have control like below
<textbox1>
<textbox2>
<dropdownlist1>
<radiobutton1> <radiobutton2>
<checkbox1>
<textbox3>
<button1>
I want to change focus on enter key press.
View 1 Replies
Feb 17, 2011
<input type="text" id="txtFirstName" runat="server" class="textReg"
onblur="javascript:validate_input(<%=txtFirstName%>,'imgFirstNameS','imgFirstNameE');" />`
I want to send control id to my javascript function
like ctl00_ContentPlaceHolder1_txtFirstName
or
function validate_input(control, success, error) {
control = document.getElementById('<%='+control+'.ClientID %>');
}
is it possible ?
View 4 Replies
Mar 17, 2011
I'm using RadScheduler control , i wanna to access the appointment click event using jquery.
like this
$("#rs").click(function(e) {
ShowDialog(true);
e.preventDefault();
});
the rs is my scheduler , i want when click on the appointment not the whole control(scheduler) , how to do this.
View 1 Replies
Sep 25, 2010
I've a JavaScript function in my page through which i make some elements in the page as 'JQuery UI droppable'.
function setDroppableTargets()
{
$(.cssDockZone).droppable();
}
But the elements with the class cssDockZone is created dynamically upon user interaction. So in the code behind i create the control first and finally at the end i register a scriptblock which calls setDroppableTargets().
//set droppable targets ClientScript.RegisterClientScriptBlock(this.GetType(), "setDroppableTargets", "setDroppableTargets()", true);
But the javascript function is invoked before the controls are created eventhough i register the script at the end (after creating the controls) and i cross checked it by getting the elements with class name '.cssDockZone' and i getting it as 0.
$(.cssDockZone).length
View 2 Replies
Mar 16, 2011
I am trying to fire a Javascript call when an ASP.net user control to an aspx page.
The Web site allows users to add user controls to a page (similar to adding a widget etc to a page like google widgets). But when the control is added the javascript does not fire, only if the page is refreshed will it fire the javascript. IF the next time the website is accessd and the controlis still there the javascript fires too.Do I need to use the RegisterClientScript method to register the call (setAutoTimer()) on the control load or OnPreRender event.In the User control I have this at the start of the ascx file:
[code]...
View 2 Replies
Feb 23, 2011
As a starting point for creating custom controls, I would like to make a control that simply displays a number. If we imagine the .ascx file contains nothing except for a literal control, and the code behind sets that value to 1.
I then want to be able to do myControl.increment();
This will run some javascript that increases the value of the literal control.
I could inject a javascript into the page, such as pseudocode:
page_load
{
scriptything.register("function increment(x) { $('#myLiteral').increment(); });
}
or something, but that wouldn't be myControl.increment, that would just be increment(). More than one control on the page would screw it up.
View 2 Replies
Mar 3, 2011
I understand how to use jQuery to make an AJAX call to a WebMethod from a normal page, but I'm running into problems doing it from a UserControl (ASCX). Right now the biggest Issue I'm having is that the JavaScript for getting access to the groupDropDown control is not working. It seems that since this is a UserControl hosted within DotNetNuke, the ususal method of getting the CLientID is not working since it is nested down x number of levels. Here is what I have:
Javascript:
function validateEnrolledDate(src, args) {
var isValid;
[code]....
I'm now just referencing a TextBox:<asp:TextBox ID="dealerId" runat="server" CssClass="theDealer" />
The Text in the Textbox is being set in Server Side code, and it is visible on screen.The alert message is "undefined", so something is still happening so that it is not getting the value of that textbox...
View 1 Replies
Dec 16, 2010
I am working on a feature to throw a warning message if the user has unsaved values in a form. I can see that in the next post there is a explanation about how to do that [URL]now the problem is that i need to do the same but using a ascx control and i don't know where put the next code in my ascx control.
<body onunload="checkSave()">
NB: I'm working on dnn so that i don't have any change to add this code in the parent page of the control.
View 2 Replies
Feb 1, 2011
I am developing a web application for online bidding wher I want the BID button to disable itself, on all clients, whenever someone places a bid. What I need is some javascript to ping the site to check if a bid has been placed on the server, if so, then disable the button. I was suggested to use jQuery for this, use .ajax to query the server for the check. Then use a setTimeout javascript function to keep checking.I am not javascript expert at all so any tips would be greatly appreciated. At lease where to start. Also, will I need to record every single bid in database to achieve above?
View 10 Replies
Jul 17, 2010
I'm trying to add upload controls to the page. This HTML mark-up with JavaScript is working fine but there
s no option to remove the added control:1. Example A
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
[code]...
View 1 Replies
Jan 25, 2011
In a repeater control there is TextBox and corresponding to each TextBox there is Button control.On click of Button how can i pass TextBox's text that user has just entered ?
Below is the code:
[Code]....
Means on click of each Button how to pass there respective TextBox's data to a javascript function ?
View 17 Replies
Mar 8, 2011
I have an input box for searching employee info (attached to a jquery autocomplete), and a box for employee number. The employee info queries multiple values (Lastname Firstname, Title, Clocknum) and returns them all as a string via the autocomplete. This is only if they dont know the clock number. The additional box is so they can search via clocknum as well.
Is there a way, to fire a method which populates a data control after clicking on or tabbing on the selected jquery autocomplete value?
View 1 Replies
May 7, 2015
How to find the asp image control inside DataListView using JavaScript.
View 1 Replies
Nov 19, 2010
I'm creating a web page that will show a form that allows a user to query a database and then page backwards and forwards through the data. In other words one record of the returned data will be displayed on the form and the user can move forward to display the next record or back to display the previous one.
My problem is that a large volume of data may be returned and I'm wondering the best way to keep this data between postbacks. I would think there would be too much data to use viewstate.
View 2 Replies
Jul 26, 2010
I have a standard ASMX web service which uses a lock object to process the first request it receives and reject other requests that come in before processing completes. The web service is hosted on a Windows Server 2003 box with a single-core processor. To test whether this works as expected, I wrote a client that spawns 100 threads. Each thread makes an asynchronous POST call to the web server (i.e., HttpWebRequest.BeginGetResponse()). From my own logging, what I'm seeing on IIS is that two threads are spawned. Let's say thread IDs 1 and 7. Thread 1 is assigned a small number of requests. It accepts and processes them, one after another. Thread 7 is assigned a large number of requests. It rejects them. Does anyone have theories on the following: Why are two threads spawned? And not four or a hundred? Why does there seem to be thread discrimination? Thread 1 looks like it has control of the lock object at all times.
View 1 Replies
Jan 20, 2010
I'm having an issue sending large volumes of emails out from an ASP.Net application. I won't post the code, but instead explain what's going on. The code should send emails to 4000 recipients but seems to stall at 385/387.
The code creates the content for the email in a string.
It then selects a list of email address to send to.
Looping through the data via a datareader it picks out the email address and sends an email.
The email sending is done by a separate method which can handle failures and returns it's outcome.
As each record is sent I produce an XML node in an XML document to log each specific attempt to send.
The loop seems to end prematurely and the XML document is saved to disk.
Now I know the code works. I have run it locally using the same SMTP machine and it worked fine with 500 records. Granted there was less content, but I can't see how that would make any difference.
I don't think the page itself times out, but even if it did, I was sure .Net would continue processing the page, even if the user saw a page time out error.
View 4 Replies
Jul 26, 2010
How Does IIS Handle a Large Volume of Requests
View 2 Replies
Mar 19, 2010
I have large volume of records in my database(70k).How do i handle with this kind of volume data in gridview. Is there any samples provided for this?
View 2 Replies
Mar 23, 2010
I'm developing a web app for which the client wants us to query their data as little as possible. The data will be coming from a Microsoft CRM instance.
So we've agreed that data will only be queried as and when it is needed, therefore if a web user wants to see a list of contacts (for example) that list is fetched into a local DataTable. Then if a new contact is created on the website the new contact is sent to CRM and added to the local DataTable at the same time. Likewise for edits.
If the user then looks at their contacts again the data will just come from the local DataTable.
View 2 Replies
Mar 11, 2011
I have a Editor control with ID="Editor1" . But i want to retrieve its html content entered by the user in the client side through jQuery .
View 3 Replies
Dec 27, 2010
In my database when I fire query it takes 40 secs on 1 crore data, similar when I use join with other table then it take more time. I have taken care non cluster index such thing. But still I want to optimize my query, what other thing I need to take like buffer, disk size etc. I am not sure on this area.
View 11 Replies
Aug 5, 2010
I am wondering if it is possible to create AJAX Toolkit control using JavaScript/JQuery or not. I know that I can create controls at server (at design or code-behind) and interact with its properties using JavaScript but I would rather want to initalize and create controls at client side using JavaScript/JQuery.
View 3 Replies