• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ATTENTION all programming buffs: C# Web page programming question...

Ymmy

Banned
I'm trying to get inport a table from a webpage where you have to login. When I'm logged in, I guess there is a cookie is in Internet Explorer so that I can just open the link, and I can see the webpage, without logging in.

Here is how I have done it in the past with webpages that required no login:

HttpWebRequest webpage = (HttpWebRequest)WebRequest.Create("http://Somewebpage");
HttpWebResponse response = (HttpWebResponse)webpage.GetResponse();
SomeWebPage = response.GetResponseStream();

Then I can get the info from the webpage source. This is prob not the best way to do it, but I'm pretty noob at this stuff. I don't know where to begin to find out how.

When I try this, I of course get errors saying that I need to login =(

Anybody have any ideas
 
You might want to toss this over to the software forum, too. They're usually pretty good with these kinds of requests.
 
Back
Top