I am building a web service in C# and i need to send the data in post method and not in the url.
until now i get the data from a url :
protected void Page_Load(object sender, EventArgs e)
{
}
from the sender,and no i want to get the data in post.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In order to access the data in POST, just do:
I’d advise you to put a break point on Page_Load and examine the contents of the Request.Params object and you’ll figure it out.