Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I'm trying to find out if it is possible to post the data from a excel document back to a web server in the same way as a HTML for operates. I can process the request.form variables using ASP and populate server side database, ideally I would like to be able to create a for based excel file that can then be submitted via a button in the file t the web server. I hope this is the correct group for this question. My thanks in advance. Nic -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Nick,
Yes, you can do this using the XMLHTTP object: Dim xml As XMLHTTP40 Dim abytPostData() As Byte abytPostData = StrConv("fname=jake&lname=marx", vbFromUnicode) Set xml = New XMLHTTP40 With xml .Open "POST", "http://www.longhead.com" .setRequestHeader "Content-Type", "application/x-www-form-urlencoded" .send abytPostData End With Set xml = Nothing To use this, you need to set a reference to "Microsoft XML, v4.0" via Tools | References. -- Regards, Jake Marx MS MVP - Excel www.longhead.com [please keep replies in the newsgroup - email address unmonitored] Hi I'm trying to find out if it is possible to post the data from an excel document back to a web server in the same way as a HTML form operates. I can process the request.form variables using ASP and populate a server side database, ideally I would like to be able to create a form based excel file that can then be submitted via a button in the file to the web server. I hope this is the correct group for this question. My thanks in advance. Nick --- Message posted from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
import data into SQL Server from Excel | Excel Discussion (Misc queries) | |||
Data Upload from Excel to SQL Server | Excel Worksheet Functions | |||
Data Upload from Excel to SQL Server | Links and Linking in Excel | |||
SQL Server -- Bulk Insert from Excel to SQL Server | Excel Discussion (Misc queries) | |||
Excel 2003 Error Cannot Locate the Internet Server or Proxy Server | Excel Discussion (Misc queries) |