Essays24.com - Term Papers and Free Essays
Search

Dhtml

Essay by   •  November 13, 2010  •  518 Words (3 Pages)  •  914 Views

Essay Preview: Dhtml

Report this essay
Page 1 of 3

Walkthrough: Accessing the DHTML DOM from C#

To access the DOM programmatically, you import both the Web browser component and references to the methods, properties, and events of the DOM into your C# project. You direct the Web browser to a URL by calling its Navigate method, and you must then wait for the documentation complete event. You obtain the document by casting the Web browser Document property to an IHTMLDocument2 interface object. You can query this object for its collections, such as its link or image collections, which are returned as IHTMLElementCollection objects.

In this walkthrough, you will use the Web browser and DOM to obtain and display all anchors found in a Web page.

To access the DOM programmatically

1. Create a new Visual C# Windows Application project named DOM.

The form name defaults to Form1.

2. In Solution Explorer, right-click the References folder and select Add Reference.

The Add Reference dialog box opens.

3. Click on the .NET tab and double-click the component named Microsoft.mshtml.

4. Click OK.

References to the methods, events, and properties of the Microsoft DOM are added to the project.

5. Open the Toolbox, right-click any tool, and choose Customize Toolbox.

The Customize Toolbox dialog box opens.

6. Click on the COM Components tab and check Microsoft Web Browser.

The Web browser control labeled Explorer is added to the Toolbox components.

7. Select the Explorer component and click the open form.

A Web browser component named axWebBrowser1 is added to the form.

8. Add a TextBox component above the browser component and a ListBox component below it, accepting the default names of textBox1 and listBox1.

9. Add a Button component to the right of listBox1. Change the Text property to "Submit," and accept the default name of button1.

The resulting form should look similar to the following screen shot:

10. Double-click on button1.

The button1_Click method is added to the project.

11. Replace the body of the button1_Click method with the following bold code:

private void button1_Click(object sender, System.EventArgs e)

{

object Zero = 0;

object EmptyString = "";

axWebBrowser1.Navigate(textBox1.Text,

ref Zero, ref EmptyString, ref EmptyString,

...

...

Download as:   txt (3.4 Kb)   pdf (65.8 Kb)   docx (9.8 Kb)  
Continue for 2 more pages »
Only available on Essays24.com
Citation Generator

(2010, 11). Dhtml. Essays24.com. Retrieved 11, 2010, from https://www.essays24.com/essay/Dhtml/10819.html

"Dhtml" Essays24.com. 11 2010. 2010. 11 2010 <https://www.essays24.com/essay/Dhtml/10819.html>.

"Dhtml." Essays24.com. Essays24.com, 11 2010. Web. 11 2010. <https://www.essays24.com/essay/Dhtml/10819.html>.

"Dhtml." Essays24.com. 11, 2010. Accessed 11, 2010. https://www.essays24.com/essay/Dhtml/10819.html.