Click here to Skip to main content
16,014,757 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Binary by ASP Pin
Chris Maunder17-Jul-02 20:16
cofounderChris Maunder17-Jul-02 20:16 
GeneralPush data continuously from server to client Pin
Nityananda16-Jul-02 6:29
Nityananda16-Jul-02 6:29 
GeneralASP Hit Counter Pin
Chris J. LaQuerre15-Jul-02 14:08
Chris J. LaQuerre15-Jul-02 14:08 
GeneralRe: ASP Hit Counter Pin
Christopher Lord15-Jul-02 21:12
Christopher Lord15-Jul-02 21:12 
QuestionHow Do I Avoid Refresh Pin
Pradhip15-Jul-02 11:26
Pradhip15-Jul-02 11:26 
AnswerRe: How Do I Avoid Refresh Pin
Jeremy Falcon16-Jul-02 9:51
professionalJeremy Falcon16-Jul-02 9:51 
GeneralSend my own POST Pin
alex.barylski15-Jul-02 11:24
alex.barylski15-Jul-02 11:24 
GeneralRe: Send my own POST Pin
Jeremy Falcon16-Jul-02 10:03
professionalJeremy Falcon16-Jul-02 10:03 
You'll have to send raw HTTP information directly to the server to avoid using <form ... method="post">. I would avoid this if at all possible.

You don't need to have visible form elements at all if you are trying to pass a value. For instance...
<form action="something.html" target="_new" method="post" name="frmMain">
    <input type="hidden" name="mydata" value="this is so like my data">
    <a href="javascript:frmMain.submit();">Clickety</a>
</form>
This will send the information without displaying anything but the link (anchor) in the browser.

What is it exactly you are wanting to do? There may be another way. If not, I'll outline some details on using raw HTTP data.

Jeremy Falcon
Imputek

<nobr>"The happy people are those who are producing something; the bored people are
those who are consuming much and producing nothing."
- William Ralph Inge

GeneralRe: Send my own POST Pin
alex.barylski16-Jul-02 11:23
alex.barylski16-Jul-02 11:23 
GeneralRe: Send my own POST Pin
Jeremy Falcon17-Jul-02 3:43
professionalJeremy Falcon17-Jul-02 3:43 
GeneralRe: Send my own POST Pin
alex.barylski17-Jul-02 22:06
alex.barylski17-Jul-02 22:06 
GeneralRe: Send my own POST Pin
Jeremy Falcon18-Jul-02 4:04
professionalJeremy Falcon18-Jul-02 4:04 
GeneralRe: Send my own POST Pin
alex.barylski18-Jul-02 12:00
alex.barylski18-Jul-02 12:00 
GeneralRe: Send my own POST (edit) Pin
Jeremy Falcon19-Jul-02 4:33
professionalJeremy Falcon19-Jul-02 4:33 
GeneralRe: Send my own POST (edit) Pin
alex.barylski19-Jul-02 10:50
alex.barylski19-Jul-02 10:50 
GeneralRe: Send my own POST (edit) Pin
Jeremy Falcon19-Jul-02 11:05
professionalJeremy Falcon19-Jul-02 11:05 
GeneralRe: Send my own POST (edit) Pin
alex.barylski19-Jul-02 13:32
alex.barylski19-Jul-02 13:32 
GeneralFormatting text without HTML knowledge... Pin
DarrenS15-Jul-02 9:54
DarrenS15-Jul-02 9:54 
GeneralRe: Formatting text without HTML knowledge... Pin
Nick Parker21-Jul-02 17:42
protectorNick Parker21-Jul-02 17:42 
GeneralRe: Formatting text without HTML knowledge... Pin
Suolan23-Jul-02 18:39
Suolan23-Jul-02 18:39 
GeneralHiding table Pin
Hans Ruck14-Jul-02 23:54
Hans Ruck14-Jul-02 23:54 
GeneralRe: Hiding table Pin
Paul Watson15-Jul-02 7:13
sitebuilderPaul Watson15-Jul-02 7:13 
GeneralRe: Hiding table Pin
Pradhip15-Jul-02 11:22
Pradhip15-Jul-02 11:22 
QuestionHow Do i Avoid Refresh Pin
Pradhip14-Jul-02 15:03
Pradhip14-Jul-02 15:03 
AnswerRe: How Do i Avoid Refresh Pin
Suolan23-Jul-02 18:31
Suolan23-Jul-02 18:31 

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.