win7 x86, VS 2008 & 2010, C++/CLI, C#, .NET 3.5 & 4.0, VB.NET, VBA... WPF is comming
remeber to give feedback you think my response deserves recognition? perhaps you may want to click the Rate this post link/button and add to my reputation
private lessons are not an option so please don't ask for help in private, I won't replay
if you use Opera and you'd like to have the tab-button functionality for the texteditor take a look at my Opera Tab-UserScirpt; and if you know how to stop firefox from jumping to the next control when you hit tab let me know
using System;
using System.IO;
using System.Net;
using System.Xml.Linq;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
HttpWebRequest httpWebRequest =
(HttpWebRequest)WebRequest.Create("http://friendfeed-api.com/v2/entry?body=Hello API&format=xml");
httpWebRequest.KeepAlive = false;
httpWebRequest.ProtocolVersion = HttpVersion.Version10;
httpWebRequest.Credentials = new NetworkCredential("***", "****");
httpWebRequest.Method = "POST";
httpWebRequest.ContentType = "multipart/form-data";
httpWebRequest.ContentLength = 0;
using (WebResponse webResponse = httpWebRequest.GetResponse())
using (Stream dataStream = webResponse.GetResponseStream())
using (StreamReader streamReader = new StreamReader(dataStream))
{
string response = streamReader.ReadToEnd();
XDocument xDoc = XDocument.Parse(response);
}
}
}
}
Originally Posted by nutrione
why does this happen?!
I have no idea maybe there is someone else who knows? guys
win7 x86, VS 2008 & 2010, C++/CLI, C#, .NET 3.5 & 4.0, VB.NET, VBA... WPF is comming
remeber to give feedback you think my response deserves recognition? perhaps you may want to click the Rate this post link/button and add to my reputation
private lessons are not an option so please don't ask for help in private, I won't replay
if you use Opera and you'd like to have the tab-button functionality for the texteditor take a look at my Opera Tab-UserScirpt; and if you know how to stop firefox from jumping to the next control when you hit tab let me know
Bookmarks