Click here to Skip to main content
15,915,019 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Printing only a div in a page Pin
jeguzmanv6-Jul-07 7:20
jeguzmanv6-Jul-07 7:20 
Questionfinding File Pin
Sachin Pimpale5-Jul-07 21:59
Sachin Pimpale5-Jul-07 21:59 
AnswerRe: finding File Pin
Fred_Smith6-Jul-07 3:37
Fred_Smith6-Jul-07 3:37 
QuestionWebservice Pin
kankeyan5-Jul-07 21:49
kankeyan5-Jul-07 21:49 
AnswerRe: Webservice Pin
Naga Rajendra Kumar6-Jul-07 1:17
Naga Rajendra Kumar6-Jul-07 1:17 
GeneralRe: Webservice Pin
kankeyan6-Jul-07 2:24
kankeyan6-Jul-07 2:24 
QuestionUnable to browse pages through IIS Pin
pubududilena5-Jul-07 21:43
pubududilena5-Jul-07 21:43 
AnswerRe: Unable to browse pages through IIS Pin
Fred_Smith6-Jul-07 3:42
Fred_Smith6-Jul-07 3:42 
GeneralRe: Unable to browse pages through IIS Pin
pubududilena6-Jul-07 5:36
pubududilena6-Jul-07 5:36 
GeneralRe: Unable to browse pages through IIS Pin
Fred_Smith6-Jul-07 6:13
Fred_Smith6-Jul-07 6:13 
QuestionNNTP question about getting new headers Pin
nm_1145-Jul-07 20:57
nm_1145-Jul-07 20:57 
QuestionHow to save textbox value in session on onblur event of textobx Pin
rahul.net115-Jul-07 20:38
rahul.net115-Jul-07 20:38 
AnswerRe: How to save textbox value in session on onblur event of textobx Pin
Fred_Smith6-Jul-07 3:44
Fred_Smith6-Jul-07 3:44 
AnswerRe: How to save textbox value in session on onblur event of textobx Pin
Christian Graus6-Jul-07 4:07
protectorChristian Graus6-Jul-07 4:07 
QuestionCopy Row Help Pin
Sachin Pimpale5-Jul-07 20:06
Sachin Pimpale5-Jul-07 20:06 
QuestionCSS Parent Selector Pin
eggie55-Jul-07 18:23
eggie55-Jul-07 18:23 
AnswerRe: CSS Parent Selector Pin
Guffa6-Jul-07 8:53
Guffa6-Jul-07 8:53 
QuestionSaving picture on webpage problem. [modified] Pin
Junior Boy5-Jul-07 16:40
Junior Boy5-Jul-07 16:40 
AnswerRe: Saving picture on webpage problem. Pin
Fred_Smith6-Jul-07 3:36
Fred_Smith6-Jul-07 3:36 
GeneralRe: Saving picture on webpage problem. Pin
Junior Boy6-Jul-07 5:23
Junior Boy6-Jul-07 5:23 
GeneralRe: Saving picture on webpage problem. Pin
Fred_Smith6-Jul-07 5:55
Fred_Smith6-Jul-07 5:55 
GeneralRe: Saving picture on webpage problem. Pin
Junior Boy6-Jul-07 6:25
Junior Boy6-Jul-07 6:25 
Question"Classic" ASP Form Behavior Pin
#realJSOP5-Jul-07 10:20
professional#realJSOP5-Jul-07 10:20 
I have a form defined as follows:

<form id="formManualAdd"
      action="thispage.asp?myAction=addPerson"
      method="post" 
      onsubmit="return ValidateData(this);">

<table>
    <tr>
        <td>Last name:</td> <td><input type="text" id="lastName" size="25" value="" /></td>            
    </tr>
    <tr>
        <td>First name:</td><td><input type="text" id="firstName" size="25" value="" /></td>
    </tr>
    <tr>
        <td>SSN:</td><td><input type="text" id="SSN" size="20" value="" /></td>
    </tr>
    <tr>
        <td colspan="2" align="center"><button name="submit" type="submit" value="submit">Submit</button></td>
    </tr>
</table>

</form>


I have the following VBScript:

Dim myAction:       myAction       = request.QueryString("myAction")
if (myAction = "addPerson") then
    ' the following code is hit
    Dim in_sLastName:   in_sLastName   = request.Form("lastName")
    Dim in_sFirstName:  in_sFirstName  = request.Form("firstName")
    Dim in_sSSN:        in_sSSN        = request.Form("SSN")
end if


When I click the button, it goes through the code in the "if" block, but the retrieved values ("request.Form(blah blah)") are null. Why?






"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


AnswerRe: &quot;Classic&quot; ASP Form Behavior Pin
Fred_Smith5-Jul-07 11:31
Fred_Smith5-Jul-07 11:31 
GeneralRe: &quot;Classic&quot; ASP Form Behavior Pin
#realJSOP6-Jul-07 3:14
professional#realJSOP6-Jul-07 3:14 

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.