I am trying to send an asp control (textbox) to a javascript function.
onblur="CalculateLossRatio(this.value,<%=txtLossRatioCurrentYear.ClientID%>)"
Is is the right way to do this.
Want to send the text from my current vb application to the Active Window
and that text should be displayed in the text area of the active window
can anyone help me?
Is it possible to send SMS from a Java application. I don't want to use J2ME in this case. I want to know with respect to J2SE and J2EE only. Is there any API available to achieve this? If it is available whether we have to use any service provider or not for this? Can you tell me how to achieve that?
Hi i want to send sms from ipod and also i will check whether it is being recieved by receiver (user) or not ?
Is this possible ?
Thanks in advance....
My send mail task works fine for email ids like [email protected] but it throws error for email ids like [email protected].
is there any way i can make it work for such ids also?
Thanks.
Hi!
There is an email service ExactTarget with web service API.
There are samples (in php though) for sending email to whole list instantly, or to single subscriber by triggered action.
It's pretty hard to get in it's documentation, and I couldn't find explanation how to send email to a single subscriber instantly without having some triggering actions.
Any help or advice will be great.
Thanks.
Well I'm working on a school project, and I uploaded my script to send emails. I'm pretty much using whats defined here: http://www.webcheatsheet.com/PHP/send_email_text_html_attachment.php .
Now, all I really changed(other than the contents), is the receiver, to my email address. However, I'm not getting it in my inbox. Is there something else I need? Do I need to do something with the settings on the server(or have my school enable something)?
HI all,
I have an account in getresponse.com
I want to send emails to the members in my mailing list after one hour of their joining.
Please tell me how can i do this
Contacts have a field called LAST_TIME_CONTACTED, it is updated with the time after you make a call.
But as I noticed when I send an SMS by the inbuilt Messaging app, it does not update. Could this be a bug?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
function load(thediv, thefile)
{
if (window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
}
else
{
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP)');
}
xmlhttp.onreadystatechange = function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(thediv) .innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open('GET', thefile, true);
xmlhttp.send();
}
</script>
</head>
<body>
<?php
//connection to db and mysql query
$result = mysql_query($query) or die(mysql_error());
$options="";
while ($row=mysql_fetch_array($result)) {
$id=$row["idProducts"];
$thing=$row["country"];
$options.="<OPTION VALUE=\"$id\">".$thing.'</option>';
}
mysql_close();
?>
<SELECT id="countrySearch" NAME=countrySearch onchange="load('divtest', 'step2.search.php')";>
<OPTION VALUE=0>Choose
<?=$options?>
</SELECT>
<div id="divtest">
test
</div>
</body>
step2.search.php consists of:
<?php
echo "I want it to store the users selection as a variable for php to use";
?>
The problem I have is I want to store what the user selects from the drop down box and use it in php to do a mysql query using the variable from the user select form to form the WHERE part of the mysql statement. Then use ajax to put new data in "divtest".
How can I store the user selection into a variable then send it to be used in step2.search.php?
What is the best way to send data and receive a response dependent on that data?
Consider the php file used for the request:
$test = $_POST['test'];
echo json_encode($test);
I have tried unsucessfully to achieve this with:
$.ajax({
type: "POST",
dataType: "json",
data: '{test : worked}',
url: 'ajax/getDude.php',
success: function(response) {
alert(response);
}
});
Hi,
I know how to keep a connection indifinetely open server side to stream continuously data to javascript.
BUT
I do not know how to send data reusing the same TCP from browser to server.
so there is not the 3 way handshake and only 2 tcp packets.
I know it is possible but I do not how to do it : use xmlhttprequest? or script tag ajax ?
can you tell me how to do it.
thank you very much
How can i catch https data(for example email) from browser before they are encrypted with ssl and send to the network? does anyone have idea?
I am looking for programmatical solution. How it works. I am not looking for any program,want to make my own.
Thx.
I recently did a mailing to a lot of hotmail addresses and now all the e-mails I send out (from PHP by the way) don't seem to reach their destination. So I figure hotmail banned my url...
Is there any way to get rid of this ban so my e-mails will reach the users again (like activation e-mails etc)?
For an internal customer service application, I want to create a web page that displays name and address along with some other details.
Assume we have 2 printers, PLASER and PLABEL.
Is it possible using CSS, or other methods, to send the entire page to the printer when printer PLASER is selected, and only the name & address, when printer PLABEL is selected?
I only want to allow one IP to access this site and want to send all the other users to google.com. How would I go about doing this? I have this at the moment -
AuthName "bla"
AuthType Basic
<LIMIT GET POST>
ORDER DENY,ALLOW
DENY FROM ALL
ALLOW FROM #IP
</LIMIT>
Hello,
I want to run bmail from the command prompt to send a mail.I am using exchange sever 2003 as as the mail server,when ever i enter the script it tells me that socket closed.Plz can any one help..
I have a ethenet access control device that is said to be able to communicate via TCP.
How can i send a pachet by entering the HEX data, since this is what i have from their manual (a standard format for the communication packets sent and received after each command)
Hi , in our Network bandwith assign to mac address and if you can get more than one , you can get more bandwith :)
if there any application or class in C# that can do this ....
I'm already have the http proxy or port maper to send packets in different ip addresses but because of they are use same mac address it won't work .
Any help is appreciated .
I have a scheduled R script running from a windows machine. After it finishes, I wish this script to automatically send an email with some log file attached. Using shell() with some other scripts may be possbile, but I was wondering if there is a better solution within R.
thanks.
greetings all
i am building a web app(smth like a forums) that will need to send thousands of emails simultaneously i think that it would be such a big load on the app to handle sending the emails, so i want to use another service or framework to handle sending the emails in asynchronous way so that there will be no load on the app, maybe JMS , i don't know, please suggest me a good solution.