frmSecInfo.vb
上传用户:szledliu
上传日期:2021-01-29
资源大小:13805k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. '///////////////////////////////////////////
  2. 'This form just shows a little bit of grabbing
  3. 'some info from the loaded document and 
  4. 'displaying it.
  5. 'simular routines could be use to implement
  6. 'additional security such as a phishing filter
  7. 'etc.
  8. '///////////////////////////////////////////
  9. Public Class frmSecInfo
  10.     Private Sub btnClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClose.Click
  11.         Me.Close()
  12.     End Sub
  13.     Private Sub frmSecInfo_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  14.         Dim oelement As HtmlElement
  15.         For Each oelement In AppManager.CurrentBrowser.Document.Links
  16.             ListBox1.Items.Add(oelement.GetAttribute("HREF"))
  17.         Next
  18.         Dim str As String = AppManager.CurrentBrowser.Document.Cookie.ToString
  19.         txtCookie.Text = str
  20.     End Sub
  21.     Private Sub lbCookies_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles lbCookies.LinkClicked
  22.         Dim ofrm As New frmBrowser
  23.         AppManager.AddTab(ofrm, "http://www.microsoft.com/info/cookies.mspx")
  24.         Me.Close()
  25.     End Sub
  26. End Class