vote up 0 vote down star

I have been asked to make a Macro which sends the Excel Data to a Website. There should not be any database involved. I have been trying to use HTTP Post after reading examples on this website. I have made a ASP.NET webpage which runs on localserver. While debugging the macro, the control does reach the webpage Page_load event but I am unable to see the data there.

Can anybody help me find my mistake?

Thanks

Abi

flag
can you post whatever code you have? – Saif Khan Jun 5 at 3:07
You should look at the page Init() instead of the page Load() – Saif Khan Jun 5 at 3:08
Excel part of the code:- Sub SendData() ' ' SendData Macro ' Dim sdata As String sdata = "Abhh" ' Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP") URL = "localhost:2782/Default.aspx?"; + sdata objHTTP.Open "POST", URL, False objHTTP.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" objHTTP.send ("") End Sub – Anonymous Jun 5 at 11:37
C# part of the code:- using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; namespace Fetch { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Label1.Text = Request.Url.Query;// I dont know where the data is in the Request object.(If it is there at all..) } } } – Anonymous Jun 5 at 11:39
Also, I can not send the data appending it to the URL as the data can be huge and also sensitive... Thanks – Anonymous Jun 5 at 11:41
show 1 more comment

3 Answers

vote up 0 vote down

Does the 'website' have to be a standard webpage? Can you not send it to a 'website' running an ASP.NET WebService instead?

See here & here on how to write a webservice, and then read here & here on how to call the WebService via VBA.

link|flag
vote up 0 vote down

Although I can't give you an exact example in Excel, I'm pretty certain Excel has a function or two to lookup values from any website using a GET request. The difference between a GET and POST request is that in the former all data passed is part of the URL string. Assuming the HTTP support in Excel is basic, I suspect you will have better luck using a GET request, carefully building your URL with the data with simple string manipulation. Although I do not know the exact syntax, imagine a formula in a cell like =lookuphtml("http://some.url.com/send?var1="&B2&"&var2="&B3), where cells B2 and B3 would contain your variable values (the values you want to pass to the script). This assumes the receiving end is capable of receiving data through GET requests (not only POST requests). Most decent server-side libraries allow data passed through both GET and POST request, although YMMV.

link|flag
Thanks for taking out time, but I can not send the data by appending it to the URL (which is working) as the data can be huge and sensitive. – Anonymous Jun 5 at 11:42
vote up 0 vote down

I'm not a .NET guy but it looks very much like URI.Query would only show the GET data because POST data isn't part of the URI.

You might want to look at using the standard form syntax of name1=value1&name2=value2&... in your sData string and then on the server use Request.Form as per the examples here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.