Click here to Skip to main content
16,009,391 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Losing Session ID Pin
dptalt24-May-07 2:29
dptalt24-May-07 2:29 
GeneralRe: Losing Session ID Pin
VbManVzw24-May-07 6:18
VbManVzw24-May-07 6:18 
Questionusercontrol property to usercontrol property Pin
TheEagle21-May-07 8:54
TheEagle21-May-07 8:54 
AnswerRe: usercontrol property to usercontrol property Pin
VbManVzw24-May-07 10:05
VbManVzw24-May-07 10:05 
QuestionPostback problem Pin
Elizma21-May-07 8:15
Elizma21-May-07 8:15 
AnswerRe: Postback problem Pin
deepaks321-May-07 8:25
deepaks321-May-07 8:25 
AnswerRe: Postback problem Pin
Not Active21-May-07 8:26
mentorNot Active21-May-07 8:26 
AnswerRe: Postback problem Pin
GgAben22-May-07 0:14
GgAben22-May-07 0:14 
QuestionClosing Pop Up. Pin
deepaks321-May-07 8:04
deepaks321-May-07 8:04 
AnswerRe: Closing Pop Up. Pin
Not Active21-May-07 8:25
mentorNot Active21-May-07 8:25 
GeneralRe: Closing Pop Up. Pin
deepaks321-May-07 8:35
deepaks321-May-07 8:35 
GeneralRe: Closing Pop Up. Pin
GgAben22-May-07 0:16
GgAben22-May-07 0:16 
AnswerRe: Closing Pop Up. Pin
kapiljadhav21-May-07 20:34
kapiljadhav21-May-07 20:34 
QuestionCascadingDropDown + DynamicPopulateExtender Pin
DouglasZU21-May-07 7:19
DouglasZU21-May-07 7:19 
QuestionEntering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 7:17
CalvinCM21-May-07 7:17 
AnswerRe: Entering TextBox Info with Screen Scraping Pin
kubben21-May-07 7:37
kubben21-May-07 7:37 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 7:45
CalvinCM21-May-07 7:45 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
kubben21-May-07 8:29
kubben21-May-07 8:29 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 8:50
CalvinCM21-May-07 8:50 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
Not Active21-May-07 8:23
mentorNot Active21-May-07 8:23 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 8:28
CalvinCM21-May-07 8:28 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
Not Active21-May-07 8:33
mentorNot Active21-May-07 8:33 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 8:36
CalvinCM21-May-07 8:36 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
Not Active21-May-07 8:48
mentorNot Active21-May-07 8:48 
GeneralRe: Entering TextBox Info with Screen Scraping Pin
CalvinCM21-May-07 9:09
CalvinCM21-May-07 9:09 
Here's what happens in my mind: I enter the username and password, click submit, the following is sent to their servers (encrypted):

POST /login.jsp HTTP/1.1
Host: www.mysite.com
User-Agent: Mozilla/4.0
Content-Length: 27
Content-Type: application/x-www-form-urlencoded

userid=joe&password=mypassword

From there, they work their magic on the userid and password to authenticate the user, and send a reply to the client that says A'Okay.

What I am getting help up on is what I am sending from my client to the server. I know that only the text is sent, not the actual text boxes, but what if Gmail needs the data in the format:

userid=joe&password=mypassword

while Yahoo needs:

USERNAME=joe&PASSCODE=mypassword

If that's the case, how does ASP.NET know what format to send the data in for different pages?

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.