Questions tagged [getresponse]
139 questions
1
vote
1 answer
How to send a mail from getresponse.com when user submits a form in my website?
I have a form. When a user submits the form after filling it, I have to send a mail to the user by using getresponse.com and also the user email should be added to my mailing list. I have an account in getresponse.com.

kishore
- 1,017
- 3
- 12
- 21
1
vote
2 answers
GetResponse API set_contact_customs() with multiple campaigns
can someone help me?
I'm using the set_contact_customs() GetResponse API function. It works, but can someone explain what happens when the same email address is subscribed in more than one campaign?
For example I want to set the field 'bought' with…

Genioblu
- 51
- 2
1
vote
0 answers
request.GetResponse() has giving "The operation has timed-out." in vb.net
I'm facing problem in getting response for a POST method web request in vb.net and the GET request is working properly and getting the response, while the same request is working fine in C# with the same steps followed here. So, can any one help me…

user3804141
- 11
- 2
1
vote
2 answers
PHP dropdown value need to save
I'm having trouble with the current PHP dropdown and I'm posting this to get some shine of light.
Here's the HTML dropdown code
1
vote
1 answer
HttpWebRequest GetResponse() not returning anything
I have written a code to call a website which returns some data. I have used HttpWebRequest.GetResponse() method. When I hit the url in browser, it returns data. However in my C# code, sometimes it returns data, sometimes it do not return…

VJOY
- 3,752
- 12
- 57
- 90
1
vote
0 answers
Web Request Get Response fails on second try
I wrote a program that searches for a user name on a web site and downloads the their main html page, finds the link to the next page and downloads that and so on. When I run the program the first time the get response for the search works correctly…

user2510712
- 21
- 5
1
vote
2 answers
How can I send and receive a large file over HTTP in C#
I am working on developing an HTTP Server/Client and I can currently send small files over it such as .txt files and other easy to read files that do not require much memory. However when I want to send a larger file say a .exe or large .pdf I get…

Schweitzer
- 21
- 2
1
vote
2 answers
Python http.client getaddrinfo failed
I am using http.client to try to read an xml file from a host. I would use urllib2, but I get a BadStatusLine because there is 3 spaces before the xml header(I can not change that). That is why I am trying this route.
I am stuck now and I keep…

mad5245
- 394
- 3
- 8
- 20
1
vote
1 answer
HttpWebRequest.GetResponse() wait till page completely loaded
I am using this code:
HttpWebResponse objHttpWebResponse = (HttpWebResponse)objHttpWebRequest.GetResponse();
return new StreamReader(objHttpWebResponse.GetResponseStream()).ReadToEnd();
I get the page content successfully, but my problem is that…

ykh
- 1,775
- 3
- 31
- 57
1
vote
3 answers
How to send lead via API to Getresponse
I have a html form where name and email address are getting collected. I try to submit these informations to a GetResponse list using this script:

mickzee
- 31
- 1
- 6
1
vote
0 answers
Timeout with HttpWebRequest
I am using HttpWebRequest to read content from website.
string url = "http://google.com.vn";
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
request.Timeout = 2000;
request.Method =…

hoangvu68
- 845
- 2
- 13
- 28
1
vote
1 answer
Can't use the value obtained by calling getResponseHeader
I'm having problems to use the value which I obtain when I call getResponseHeader on my Greasemonkey script.
First of all, I have declared the following global variables:
size = 0;
maxS = 153600; // Max. size (bytes).
Once the website has been…

Xavier Alvarez
- 283
- 2
- 10
0
votes
1 answer
making WebResponse GetResponse WebBot wait for redirect
I am making a bot that simulates a human user using a specific website.
When the user uses the site here is what happens
the user uploads a file by using the site's Browse button and then clicks Upload
the server responds immediately and the user…

pdschuller
- 584
- 6
- 26
0
votes
4 answers
Blackberry HttpConnection prob to run in simulator
I want call a url and get the response data from the url from my Blackberry App. For that, I am using HttpConnection. Here is the code I am using:
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.UiApplication;
import…

dev_android
- 8,698
- 22
- 91
- 148
0
votes
1 answer
Why isn't my intellisense listing HttpWebRequest.GetResponse method?
using System;
using System.Net;
using System.Xml.Linq;
namespace PhoneApp1
{
public class ABC
{
//constructor
public ABC()
{
}
void abc()
{
String url = "";
…

nawfal
- 70,104
- 56
- 326
- 368