public string Login() { var Credenciais = new NameValueCollection(); Credenciais.Add("usuario", "claudio"); Credenciais.Add("senha", "ac@78902"); return(WR2.DoPost("http://www.agilus.com.br/alvo", "http://www.agilus.com.br/alvo/Consultas", Credenciais)); }
// // GET: /Home/ public string Index() { string html = WR2.DoRequest("http://www.dolarhoje.com.br/"); string expressao = "stockup stockup_bigger"; int posDolar = html.IndexOf(expressao); return(html.Substring(posDolar + expressao.Length + 2, 5)); }