Click here to Skip to main content
15,896,348 members
Home / Discussions / C#
   

C#

 
GeneralRe: Screensaver questions Pin
Christian Graus11-Jul-06 8:27
protectorChristian Graus11-Jul-06 8:27 
AnswerRe: Screensaver questions Pin
Dustin Metzgar11-Jul-06 7:30
Dustin Metzgar11-Jul-06 7:30 
QuestionStored Procedures (Drag&Drop) Pin
HRiazi11-Jul-06 6:51
HRiazi11-Jul-06 6:51 
AnswerRe: Stored Procedures (Drag&Drop) Pin
Josh Smith11-Jul-06 9:45
Josh Smith11-Jul-06 9:45 
QuestionPassing Data from a Mdi Child form to its Parent form Pin
joshp121711-Jul-06 6:01
joshp121711-Jul-06 6:01 
AnswerNumerous methods Pin
Ennis Ray Lynch, Jr.11-Jul-06 6:07
Ennis Ray Lynch, Jr.11-Jul-06 6:07 
Questiondownload image Pin
TAREQ F ABUZUHRI11-Jul-06 5:14
TAREQ F ABUZUHRI11-Jul-06 5:14 
AnswerRe: download image Pin
Eran Aharonovich11-Jul-06 5:21
Eran Aharonovich11-Jul-06 5:21 
Replace the url with your url and there you have it


// Prepare web request...
HttpWebRequest myRequest =
(HttpWebRequest)WebRequest.Create("http://www.noviway.com");

// We use POST ( we can also use GET )
myRequest.Method = "GET";


// Assign the response object of 'HttpWebRequest' to a 'HttpWebResponse' variable.
HttpWebResponse myHttpWebResponse= (HttpWebResponse)myRequest.GetResponse();

// Display the contents of the page to the console.
Stream streamResponse = myHttpWebResponse.GetResponseStream();


MemoryStream memStream = new MemoryStream();

byte[] readBuffer = new byte[256];

// Read from buffer
int count = streamResponse.Read( readBuffer, 0, 256 );

while (count > 0)
{
memStream.Write(readBuffer, 0, count);

// Read from buffer
count = streamResponse.Read( readBuffer, 0, 256);
}

byte[] originalBuffer = memStream.ToArray();

// Release the response object resources.

streamResponse.Close();

// Close response
myHttpWebResponse.Close();



Eran Aharonovich (eran.aharonovich@gmail.com )
Noviway
GeneralRe: download image Pin
TAREQ F ABUZUHRI11-Jul-06 16:02
TAREQ F ABUZUHRI11-Jul-06 16:02 
GeneralRe: download image Pin
Eran Aharonovich11-Jul-06 20:25
Eran Aharonovich11-Jul-06 20:25 
QuestionUnit Testing a Singleton Pin
Colin Angus Mackay11-Jul-06 5:13
Colin Angus Mackay11-Jul-06 5:13 
AnswerRe: Unit Testing a Singleton Pin
Dustin Metzgar11-Jul-06 5:18
Dustin Metzgar11-Jul-06 5:18 
AnswerRe: Unit Testing a Singleton Pin
Jun Du11-Jul-06 5:45
Jun Du11-Jul-06 5:45 
GeneralRe: Unit Testing a Singleton Pin
Colin Angus Mackay11-Jul-06 5:49
Colin Angus Mackay11-Jul-06 5:49 
GeneralRe: Unit Testing a Singleton Pin
Judah Gabriel Himango11-Jul-06 5:53
sponsorJudah Gabriel Himango11-Jul-06 5:53 
GeneralRe: Unit Testing a Singleton Pin
Jun Du11-Jul-06 6:07
Jun Du11-Jul-06 6:07 
GeneralRe: Unit Testing a Singleton Pin
Dustin Metzgar11-Jul-06 6:22
Dustin Metzgar11-Jul-06 6:22 
GeneralRe: Unit Testing a Singleton Pin
Jun Du11-Jul-06 7:07
Jun Du11-Jul-06 7:07 
GeneralRe: Unit Testing a Singleton Pin
Kevin McFarlane11-Jul-06 6:17
Kevin McFarlane11-Jul-06 6:17 
GeneralRe: Unit Testing a Singleton Pin
Colin Angus Mackay11-Jul-06 13:01
Colin Angus Mackay11-Jul-06 13:01 
GeneralRe: Unit Testing a Singleton Pin
Judah Gabriel Himango11-Jul-06 13:08
sponsorJudah Gabriel Himango11-Jul-06 13:08 
GeneralRe: Unit Testing a Singleton Pin
Colin Angus Mackay11-Jul-06 22:50
Colin Angus Mackay11-Jul-06 22:50 
GeneralRe: Unit Testing a Singleton Pin
Judah Gabriel Himango12-Jul-06 6:52
sponsorJudah Gabriel Himango12-Jul-06 6:52 
AnswerRe: Unit Testing a Singleton Pin
Judah Gabriel Himango11-Jul-06 5:47
sponsorJudah Gabriel Himango11-Jul-06 5:47 
AnswerInherit the singleton Pin
Ennis Ray Lynch, Jr.11-Jul-06 6:08
Ennis Ray Lynch, Jr.11-Jul-06 6:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.