Click here to Skip to main content
15,901,035 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Change the visibility of a div Pin
N a v a n e e t h30-Oct-07 0:39
N a v a n e e t h30-Oct-07 0:39 
GeneralRe: Change the visibility of a div Pin
Malayil alex30-Oct-07 1:00
Malayil alex30-Oct-07 1:00 
Questionhow is that done?? Pin
conman11029-Oct-07 10:11
conman11029-Oct-07 10:11 
AnswerRe: how is that done?? Pin
JimmyRopes29-Oct-07 13:25
professionalJimmyRopes29-Oct-07 13:25 
GeneralRe: how is that done?? Pin
conman11030-Oct-07 2:58
conman11030-Oct-07 2:58 
QuestionHTTP Request Forwarding in Classic ASP Pin
Mr Jen Withers29-Oct-07 7:46
Mr Jen Withers29-Oct-07 7:46 
AnswerRe: HTTP Request Forwarding in Classic ASP Pin
JimmyRopes29-Oct-07 13:21
professionalJimmyRopes29-Oct-07 13:21 
AnswerRe: HTTP Request Forwarding in Classic ASP Pin
Spiff Dog29-Oct-07 14:26
Spiff Dog29-Oct-07 14:26 
If you are talking about having the server forward a post request, you may be able to do something like this. My VBScript is kinda rusty, so expect a bug or two:
<br />
<%<br />
Dim postData<br />
Dim xmlhttp <br />
<br />
'sample form-POST data<br />
postData = "data=100"<br />
<br />
'setup form post object<br />
'we use the XML HTTP object<br />
Set xmlhttp = server.CreateObject("MSXML2.ServerXMLHTTP")<br />
<br />
'replace with the server you would like to post to<br />
'make sure "POST" is capitalized<br />
xmlhttp.Open "POST","http://my.target.server/target.asp",false<br />
<br />
'set header with Content-Type rule for a typical form post<br />
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"<br />
<br />
'send data in key=value pairs<br />
xmlhttp.send(dataToSend)<br />
<br />
'write out return response from POST<br />
Response.Write xmlhttp.responseXml.xml<br />
<br />
'destroy the http object<br />
Set xmlhttp = nothing<br />
%><br />


If you are talking about just taking the browser post point to a differant location, if it's the same server, just use:
<br />
Server.Transfer ("newlocation.asp", true)<br />





-------------------------

Spiffdog Design

It's ok.. he's no ordinary dog...

QuestionphpBB Pin
JimmyRopes29-Oct-07 4:47
professionalJimmyRopes29-Oct-07 4:47 
AnswerRe: phpBB Pin
AliAmjad29-Oct-07 5:18
AliAmjad29-Oct-07 5:18 
GeneralRe: phpBB Pin
JimmyRopes29-Oct-07 5:38
professionalJimmyRopes29-Oct-07 5:38 
AnswerRe: phpBB Pin
Duane in Japan29-Oct-07 9:20
Duane in Japan29-Oct-07 9:20 
GeneralRe: phpBB Pin
JimmyRopes29-Oct-07 13:11
professionalJimmyRopes29-Oct-07 13:11 
AnswerRe: phpBB Pin
Michael Sync31-Oct-07 1:55
Michael Sync31-Oct-07 1:55 
GeneralRe: phpBB Pin
JimmyRopes31-Oct-07 3:40
professionalJimmyRopes31-Oct-07 3:40 
QuestionAdvanced Mailto features not working Pin
sourkrouse29-Oct-07 4:24
sourkrouse29-Oct-07 4:24 
QuestionHow to find out the installed version of MS Power Point from registry? Pin
FishiFishi28-Oct-07 23:19
FishiFishi28-Oct-07 23:19 
AnswerRe: How to find out the installed version of MS Power Point from registry? Pin
JimmyRopes29-Oct-07 5:02
professionalJimmyRopes29-Oct-07 5:02 
QuestionHow can a EXE Know from where it was downloaded Pin
vikrant kpr28-Oct-07 5:19
vikrant kpr28-Oct-07 5:19 
AnswerRe: How can a EXE Know from where it was downloaded Pin
Scott Dorman28-Oct-07 6:04
professionalScott Dorman28-Oct-07 6:04 
GeneralRe: How can a EXE Know from where it was downloaded Pin
vikrant kpr28-Oct-07 6:23
vikrant kpr28-Oct-07 6:23 
GeneralRe: How can a EXE Know from where it was downloaded Pin
Scott Dorman28-Oct-07 6:39
professionalScott Dorman28-Oct-07 6:39 
AnswerRe: How can a EXE Know from where it was downloaded Pin
Guffa28-Oct-07 8:17
Guffa28-Oct-07 8:17 
QuestionWhat is Silver Light Pin
rilov28-Oct-07 3:47
rilov28-Oct-07 3:47 
AnswerRe: What is Silver Light Pin
soni uma28-Oct-07 19:08
soni uma28-Oct-07 19:08 

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.