![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Nov 2006
Location: My House
Posts: 11
Rep Power: 0
![]() |
Displaying HTML from a webpage
I am making a web browser at the moment known as T.I.B. wich stands for Tank's Internet Browser. But I have come across a couple of problems. With internet explorer and mozilla firefox you can view a web pages scripting by activating a command known as "View Source". How can i do this with my web browser that i am making? Oh yeah and just incase you need to know... it is made using C#.
If you want to take a look at my test version of T.I.B. here it is: Go to: http://tanks_bunker.sitesled.com/TIB_beta_2.zip Password for zip file: projecttib Also note that this program is not fully functional yet, it is incomplete. Just a test thats all. |
|
|
|
|
|
#2 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
The source is what you receive in response to your request. It's what you use to determine what additional requests to make, if any, such as style, additional scripting, images, and so forth. You use all this to determine how to render the page. Just display it.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#3 |
|
Programmer
|
Is there a way to uninstall this. thereis no unistall utility with it. I deleted the files. By the way good browser. But I think behind the scene you are using IE component so it IE with diferent interface. Isn't it.
__________________
Iftikhar Ahmed Khan For doing an experiment on programmer's mood please visit http://uxisfyp1.brunel.ac.uk/cspgiak Last edited by Iftikhar; Nov 28th, 2006 at 6:51 AM. |
|
|
|
|
|
#4 | |
|
Newbie
Join Date: Nov 2006
Location: My House
Posts: 11
Rep Power: 0
![]() |
Quote:
Yeah it is pretty much just IE with a new interface.... but me and a couple of mates are working on making it so that it uses our own components instead of IE, which we almost have in the bag... just got a few bugs thats all. P.S. Sorry for all the trouble about the uninstalling program, but the test version you kinda have to do it manually. If you need help just give us a yell.
__________________
Tank's Bunker | Official Dedicated Project Black Dragon Operating System Development Center |
|
|
|
|
|
|
#5 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
I take it then, that your aren't "making a web browser", but assembling a web browser from off-the-shelf components. Nothing wrong with that, but if you don't research the basic principles, you'll have difficulties really tailoring things. The source, after all, is the basic data with which you work. You might find someone to write the code for you, but most people are playing with their own toys.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#6 |
|
Newbie
Join Date: Nov 2006
Location: My House
Posts: 11
Rep Power: 0
![]() |
I am just having trouble with doing this code that i want so much. I would love for somebody to help me with it. I will mention the person who helps me out with it, in the credits as a sign of my appreciation.
__________________
Tank's Bunker | Official Dedicated Project Black Dragon Operating System Development Center |
|
|
|
|
|
#7 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
Good luck, but I think you should temper your expectations with realism. Your offer is probably an inducement only to those whose survival needs are being met entirely by someone else, and who have no other credentials or track record.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
|
|
|
#8 |
|
Newbie
Join Date: Nov 2006
Location: My House
Posts: 11
Rep Power: 0
![]() |
There is no harm in asking.
__________________
Tank's Bunker | Official Dedicated Project Black Dragon Operating System Development Center |
|
|
|
|
|
#9 |
|
Programmer
Join Date: Nov 2006
Location: Kosovė/Prishtinė
Posts: 47
Rep Power: 0
![]() |
fluffy,
If you are trying to show the page source, you can do that in this way below: create a multiline textbox put in in your form somewhere and you must have the webBrowser component, and then write this: YourMultilinetextbox_name.Text = YourwebBrowserComponent.DocumentText.ToString(); |
|
|
|
|
|
#10 |
|
Newbie
Join Date: Nov 2006
Location: My House
Posts: 11
Rep Power: 0
![]() |
Hey thanks man... i'll give it a try.
Also is there another way to display the cody using a similar process on another form?
__________________
Tank's Bunker | Official Dedicated Project Black Dragon Operating System Development Center |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Basics of HTML Tutorial | crawforddavid2006 | HTML / XHTML / CSS | 14 | Jul 11th, 2006 7:40 AM |
| Basic HTML Tutorial - Reuben Keeney | ReubenK | HTML / XHTML / CSS | 14 | Mar 26th, 2006 5:50 AM |
| HTML =/= Programming | Sane | Coder's Corner Lounge | 32 | Mar 8th, 2006 2:50 AM |
| Want to upload, show as HTML and other things.... | Invisible | Other Web Development Languages | 4 | Jun 19th, 2005 7:51 PM |
| displaying html in java | freddiemercury | Java | 1 | Feb 1st, 2005 11:06 AM |