AZHAR SAYYAD Ответов: 1

Как восстановить запрошенный параметр в ответе


Здравствуйте, я хотел получить параметр на странице ответа, как это можно получить.

Что я уже пробовал:

здесь из моего класса я посылаю какой-то параметр в asp.net страница.
string email = "YOUR EMAIL";
           string password = "YOUR PASSWORD";

           string URLAuth = "http://localhost:2013/Default.aspx";
           string postString = string.Format("name={0}&inputPassword={1}", email, password);

           const string contentType = "application/x-www-form-urlencoded";
           System.Net.ServicePointManager.Expect100Continue = false;

           CookieContainer cookies = new CookieContainer();
           HttpWebRequest webRequest = WebRequest.Create(URLAuth) as HttpWebRequest;
           webRequest.Method = "POST";
           webRequest.ContentType = contentType;
           webRequest.CookieContainer = cookies;
           webRequest.ContentLength = postString.Length;
           webRequest.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1";
           webRequest.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8";

           StreamWriter requestWriter = new StreamWriter(webRequest.GetRequestStream());
           requestWriter.Write(postString);
           requestWriter.Close();

           StreamReader responseReader = new StreamReader(webRequest.GetResponse().GetResponseStream());
           string responseData = responseReader.ReadToEnd();

           responseReader.Close();
           webRequest.GetResponse().Close();


и я хочу получить этот параметр в default. aspx

1 Ответов

Рейтинг:
2

F-ES Sitecore

string user = Request.Form["name"];
string password = Request.Form["inputPassword"];