Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Dim pageElements As HtmlElementCollection = WebBrowser1.d ocument.GetElementsByTagName("input")
For Each currElement As HtmlElement In pageElements
If currElement.GetAttribute("type").ToLower = "submit" Then
currElement.OuterHtml = ""
End If
Next
Aradığınız şey bu olabilirmi ?
Kod:Dim pageElements As HtmlElementCollection = WebBrowser1.d ocument.GetElementsByTagName("input") For Each currElement As HtmlElement In pageElements If currElement.GetAttribute("type").ToLower = "submit" Then currElement.OuterHtml = "" End If Next