C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2720
Number of posts: 5746

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
C# headaches!!!! Posted by thebeings on 8 Feb 2002 at 1:22 AM
This is simple yet I cannot find anything on it for C#..

Here it goes..

How do I display a webpage in a c# windows application?

what i have is a c# based application and i am trying to load a webform.aspx file from a server... any ideas?

i am able to send the request.. and get data back.. and then dump its raw content into a richtextbox and what not.. but i need it to interpret the page .. not just in raw data..

is there a formatter? encoder? decoder? any ideas?


thanks

daniel rodriguez

thebeings@hotmail.com
Report
Re: C# headaches!!!! Posted by Ivcho on 3 May 2002 at 5:00 PM
This message was edited by the Ivcho at 2002-5-3 17:2:18

: This is simple yet I cannot find anything on it for C#..
:
: Here it goes..
:
: How do I display a webpage in a c# windows application?
:
: what i have is a c# based application and i am trying to load a webform.aspx file from a server... any ideas?
:
: i am able to send the request.. and get data back.. and then dump its raw content into a richtextbox and what not.. but i need it to interpret the page .. not just in raw data..
:
: is there a formatter? encoder? decoder? any ideas?
:
:
: thanks
:
: daniel rodriguez
:
: thebeings@hotmail.com
:



First u need the .dll for this

using AxSHDocVw;

then..

private AxWebBrowser mybrowsercontrol;

this.mybrowsercontrol = new AxWebBrowser();
mybrowsercontrol.BeginInit();

// do your gui stuff or whatever here

and then
mybrowsercontrol.EndInit();
mybrowsercontrol.RegisterAsBrowser = true;
mybrowsercontrol.RegisterAsDropTarget = true;
mybrowsercontrol.Silent = false;

to display a page

Object o = null;
mybrowsercontrol.Navigate("http://www.whatever.com", ref o, ref o, ref o, ref o);

not sure if this makes sense to you.. i hope it does but if you have any problems let me know

i just finished writing my own browser so i kinda know this stuff.. hehe

Ivo







 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.