Click here to Skip to main content
15,891,253 members
Home / Discussions / C#
   

C#

 
QuestionDropdown list Pin
Naji.A10-Oct-06 7:37
Naji.A10-Oct-06 7:37 
AnswerRe: Dropdown list Pin
Private_Void10-Oct-06 8:14
Private_Void10-Oct-06 8:14 
GeneralRe: Dropdown list Pin
Naji.A10-Oct-06 8:52
Naji.A10-Oct-06 8:52 
AnswerRe: Dropdown list Pin
Anthony Mushrow10-Oct-06 14:42
professionalAnthony Mushrow10-Oct-06 14:42 
GeneralRe: Dropdown list Pin
Private_Void11-Oct-06 3:10
Private_Void11-Oct-06 3:10 
Questional command line syntax Pin
waheed awan10-Oct-06 6:56
waheed awan10-Oct-06 6:56 
Questionexecuting a PHP file on the webserver [modified] Pin
asamay10-Oct-06 6:42
asamay10-Oct-06 6:42 
AnswerRe: executing an PHP file on the webserver Pin
mikone10-Oct-06 6:51
mikone10-Oct-06 6:51 
ok you did not google for it as i suggested you to do Smile | :)

WebClient myclient = new WebClient();
FileStream mystream = myclient.OpenRead("http://yourwebpage.net");
while (mystream.Peek() > -1)
{
string line = mystream.ReadLine();
}

i guess/hope this code retrieves the data of the specified page and reads it line by line until end of file.

please try to google for it the next time because there are so many existing pages and explanations about it... i know you even did not try to find something useful about it and thats kinda annoying and makes me not respond to posts like this - thats why if you expect anyone to answer you should follow their advises (or at least try to and tell them why you failed..)
GeneralRe: executing a PHP file on the webserver Pin
asamay10-Oct-06 7:00
asamay10-Oct-06 7:00 
GeneralRe: executing a PHP file on the webserver Pin
mikone10-Oct-06 7:59
mikone10-Oct-06 7:59 
GeneralRe: executing a PHP file on the webserver Pin
asamay10-Oct-06 8:28
asamay10-Oct-06 8:28 
QuestionDataColumn and DataTable Pin
123456uio10-Oct-06 6:25
123456uio10-Oct-06 6:25 
AnswerRe: DataColumn and DataTable Pin
Ioan Anton10-Oct-06 8:19
Ioan Anton10-Oct-06 8:19 
AnswerRe: DataColumn and DataTable Pin
Private_Void10-Oct-06 8:24
Private_Void10-Oct-06 8:24 
Questioncrystal reports with c#.net Pin
Raheelchohan10-Oct-06 5:26
Raheelchohan10-Oct-06 5:26 
QuestionMy good stuff to share... Pin
ahyeek10-Oct-06 5:11
ahyeek10-Oct-06 5:11 
QuestionHow fast is a bubble sort? Pin
Anthony Mushrow10-Oct-06 4:59
professionalAnthony Mushrow10-Oct-06 4:59 
AnswerRe: How fast is a bubble sort? Pin
J4amieC10-Oct-06 5:11
J4amieC10-Oct-06 5:11 
GeneralRe: How fast is a bubble sort? Pin
Anthony Mushrow10-Oct-06 5:56
professionalAnthony Mushrow10-Oct-06 5:56 
AnswerRe: How fast is a bubble sort? Pin
Ashish Derhgawen10-Oct-06 5:57
Ashish Derhgawen10-Oct-06 5:57 
GeneralRe: How fast is a bubble sort? Pin
Dan Neely10-Oct-06 6:03
Dan Neely10-Oct-06 6:03 
AnswerRe: How fast is a bubble sort? Pin
Daniel Grunwald10-Oct-06 7:49
Daniel Grunwald10-Oct-06 7:49 
AnswerRe: How fast is a bubble sort? Pin
Daniel Grunwald10-Oct-06 8:00
Daniel Grunwald10-Oct-06 8:00 
GeneralRe: How fast is a bubble sort? Pin
User 665810-Oct-06 8:57
User 665810-Oct-06 8:57 
GeneralRe: How fast is a bubble sort? Pin
Dan Neely10-Oct-06 9:39
Dan Neely10-Oct-06 9:39 

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.