001
001

Reputation: 65087

GetRequest posted argument query string c#

How to get request argument of current request posted to a page?

example

External application post the following query string username=abc&password=123 to mypage1.aspx

How does mypage1 get the query string posted into it?

Upvotes: 0

Views: 375

Answers (1)

Cheng Chen
Cheng Chen

Reputation: 43513

Request.Params["username"]

btw, posting plain text password in url is dangerous.

Upvotes: 3

Related Questions