Click here to Skip to main content
15,913,773 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Setting the height of a DIV... Pin
theJazzyBrain25-Mar-04 20:56
theJazzyBrain25-Mar-04 20:56 
GeneralRe: Setting the height of a DIV... Pin
John Kuhn26-Mar-04 9:20
John Kuhn26-Mar-04 9:20 
GeneralTab Navigation Help Pin
caheo21-Mar-04 2:35
caheo21-Mar-04 2:35 
GeneralRe: Tab Navigation Help Pin
Paul Watson21-Mar-04 22:34
sitebuilderPaul Watson21-Mar-04 22:34 
GeneralRe: Tab Navigation Help Pin
theJazzyBrain23-Mar-04 21:25
theJazzyBrain23-Mar-04 21:25 
GeneralRe: Tab Navigation Help Pin
intrader27-Mar-04 21:59
intrader27-Mar-04 21:59 
Generalsending data in URL Pin
SamAmman19-Mar-04 20:51
SamAmman19-Mar-04 20:51 
GeneralRe: sending data in URL Pin
John Kuhn22-Mar-04 16:47
John Kuhn22-Mar-04 16:47 
Since it seems like you are using "Classic" ASP and ADO, the solutions is something like the following:

Dim httpRequest, url, response, request

url = "http://www.mydomain.com/mypage.asp"
Set httpRequest = Server.CreateObject("WinHttp.WinHttpRequest.5")
httpRequest.Open "PUT", url, False

' declaring and opening a new connection and recordset omitted

Do While Not rs.EOF()
  request = "myvar1=" & rs("field1") & "&myvar2=" & rs("field2")
  httpRequest.Send request
  response = HttpReq.ResponseText
  rs.MoveNext()
Loop


Of course, if you were using the .NET Framework, you could use HttpWebResponse and HttpWebRequest to do the same thing.

You can look up "WinHTTP Interfaces" on MSDN for more information.

What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
GeneralWebservice schema not reflecting my code! Pin
Carl Mercier18-Mar-04 10:22
Carl Mercier18-Mar-04 10:22 
GeneralASP page communicates with MFC-EXE Pin
VinMan18-Mar-04 10:03
VinMan18-Mar-04 10:03 
GeneralCreate Table with createElement Pin
C0ffee18-Mar-04 1:56
C0ffee18-Mar-04 1:56 
GeneralRe: Create Table with createElement Pin
Paul Watson18-Mar-04 7:50
sitebuilderPaul Watson18-Mar-04 7:50 
GeneralRe: Create Table with createElement Pin
C0ffee18-Mar-04 8:54
C0ffee18-Mar-04 8:54 
GeneralRe: Create Table with createElement Pin
Paul Watson18-Mar-04 9:13
sitebuilderPaul Watson18-Mar-04 9:13 
GeneralRe: Create Table with createElement Pin
18-Mar-04 9:22
suss18-Mar-04 9:22 
GeneralRe: Create Table with createElement Pin
C0ffee18-Mar-04 9:09
C0ffee18-Mar-04 9:09 
Generalresizing IFrame Pin
Hesham Amin18-Mar-04 0:29
Hesham Amin18-Mar-04 0:29 
GeneralRe: resizing IFrame Pin
C0ffee18-Mar-04 8:55
C0ffee18-Mar-04 8:55 
GeneralRe: resizing IFrame Pin
Hesham Amin18-Mar-04 20:40
Hesham Amin18-Mar-04 20:40 
GeneralRe: resizing IFrame Pin
C0ffee20-Mar-04 4:54
C0ffee20-Mar-04 4:54 
GeneralChange "File Field's" Button Color Pin
UB17-Mar-04 22:13
UB17-Mar-04 22:13 
GeneralRe: Change "File Field's" Button Color Pin
Anonymous18-Mar-04 4:02
Anonymous18-Mar-04 4:02 
GeneralRe: Change "File Field's" Button Color Pin
Paul Watson18-Mar-04 7:58
sitebuilderPaul Watson18-Mar-04 7:58 
GeneralRe: Change "File Field's" Button Color Pin
UB18-Mar-04 18:50
UB18-Mar-04 18:50 
QuestionHow to use that ”?” in a URL? Pin
anderslundsgard17-Mar-04 21:22
anderslundsgard17-Mar-04 21:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.