Click here to Skip to main content
15,887,822 members
Home / Discussions / C#
   

C#

 
GeneralRe: Email Delivery Receipt Pin
Jassim Rahma1-Dec-14 21:18
Jassim Rahma1-Dec-14 21:18 
GeneralRe: Email Delivery Receipt Pin
OriginalGriff1-Dec-14 21:34
mveOriginalGriff1-Dec-14 21:34 
Questionstrong encryption Pin
Jassim Rahma1-Dec-14 0:44
Jassim Rahma1-Dec-14 0:44 
SuggestionRe: strong encryption Pin
Richard MacCutchan1-Dec-14 1:19
mveRichard MacCutchan1-Dec-14 1:19 
Question[Solved] DataGridView, BindingList and combining object properties? Pin
ixilom30-Nov-14 5:54
ixilom30-Nov-14 5:54 
QuestionLink-grammar 5.1.3 /Windows, MSVC Pin
Member 1127414829-Nov-14 18:07
Member 1127414829-Nov-14 18:07 
AnswerRe: Link-grammar 5.1.3 /Windows, MSVC Pin
Garth J Lancaster29-Nov-14 19:06
professionalGarth J Lancaster29-Nov-14 19:06 
QuestionHow to Handle Redirects to Login When Trying to Read Results From HttpWebRequest? Pin
Member 1127231728-Nov-14 15:29
Member 1127231728-Nov-14 15:29 
I am trying to retrieve text results from a URL, but it redirects me to a second URL to authenticate then later redirects me back to the original URL to see the results. GetResponse ends up returning the html of the second URL instead of the text from the URL that I intended to get results from.

Here's how I am currently attempting to make the web requests.


C#
string URL = "http://somesite.net/results";
var httpWebRequest = (HttpWebRequest)WebRequest.Create(URL);
httpWebRequest.Headers.Add("Authorization", "Basic " + auth);
httpWebRequest.ContentType = "application/x-www-form-urlencoded";
httpWebRequest.Method = "GET";


Is there a way that I can handle the redirect to the login URL so I can pull the right data?

Any help will be greatly appreciated, and thank you for taking the time to look over this. Please let me know if I need to provide any additional information.
Questionsetting file's security to 'no delete' in code ? Pin
BillWoodruff28-Nov-14 8:39
professionalBillWoodruff28-Nov-14 8:39 
QuestionRe: setting file's security to 'no delete' in code ? Pin
Eddy Vluggen28-Nov-14 8:54
professionalEddy Vluggen28-Nov-14 8:54 
AnswerRe: setting file's security to 'no delete' in code ? Pin
BillWoodruff28-Nov-14 14:11
professionalBillWoodruff28-Nov-14 14:11 
GeneralRe: setting file's security to 'no delete' in code ? Pin
Eddy Vluggen1-Dec-14 8:02
professionalEddy Vluggen1-Dec-14 8:02 
GeneralRe: setting file's security to 'no delete' in code ? Pin
Manfred Rudolf Bihy1-Dec-14 9:01
professionalManfred Rudolf Bihy1-Dec-14 9:01 
AnswerRe: setting file's security to 'no delete' in code ? Pin
Dave Kreskowiak28-Nov-14 10:24
mveDave Kreskowiak28-Nov-14 10:24 
GeneralRe: setting file's security to 'no delete' in code ? Pin
BillWoodruff28-Nov-14 14:12
professionalBillWoodruff28-Nov-14 14:12 
AnswerRe: [still unsolved as of Dec. 1] setting file's security to 'no delete' in code ? Pin
Manfred Rudolf Bihy1-Dec-14 2:02
professionalManfred Rudolf Bihy1-Dec-14 2:02 
AnswerRe: [still unsolved as of Dec. 1] setting file's security to 'no delete' in code ? Pin
Manfred Rudolf Bihy1-Dec-14 3:01
professionalManfred Rudolf Bihy1-Dec-14 3:01 
GeneralRe: [still unsolved as of Dec. 1] setting file's security to 'no delete' in code ? Pin
BillWoodruff1-Dec-14 21:12
professionalBillWoodruff1-Dec-14 21:12 
GeneralRe: [still unsolved as of Dec. 1] setting file's security to 'no delete' in code ? Pin
Manfred Rudolf Bihy2-Dec-14 18:44
professionalManfred Rudolf Bihy2-Dec-14 18:44 
GeneralRe: [still unsolved as of Dec. 1] setting file's security to 'no delete' in code ? Pin
Manfred Rudolf Bihy3-Dec-14 21:17
professionalManfred Rudolf Bihy3-Dec-14 21:17 
QuestionWrite to Registry with Administrative Privileges Pin
Jassim Rahma28-Nov-14 1:36
Jassim Rahma28-Nov-14 1:36 
AnswerRe: Write to Registry with Administrative Privileges Pin
Richard MacCutchan28-Nov-14 2:50
mveRichard MacCutchan28-Nov-14 2:50 
AnswerRe: Write to Registry with Administrative Privileges Pin
Pete O'Hanlon28-Nov-14 3:17
mvePete O'Hanlon28-Nov-14 3:17 
GeneralRe: Write to Registry with Administrative Privileges Pin
Jassim Rahma28-Nov-14 9:21
Jassim Rahma28-Nov-14 9:21 
GeneralRe: Write to Registry with Administrative Privileges Pin
Richard MacCutchan28-Nov-14 22:34
mveRichard MacCutchan28-Nov-14 22:34 

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.