タイトル | : Re^5: HTMLの読み込みについて |
記事No | : 2581 |
投稿日 | : 2005/11/14(Mon) 20:50 |
投稿者 | : なおこ(・∀・) |
お世話になります。
あれ...?私の環境では特に問題なかったんですが。 魔界の仮面弁士さんがおっしゃっていますが、 ↓こういうところで、妥当なXHTML文書かどうかチェックして修正するのが筋だと思うのですが、 [Another HTML-lint gateway] hhttp://openlab.ring.gr.jp/k16/htmllint/htmllint.html
とりあえず、 > VBはDocType内のLink先を読むみたいなんですが、これを読まないようにするとか出来ないでしょう か。 読まないようにしたいのであれば、ExceptionをCtachして握りつぶすしかないと思われます。
Dim reader As Xml.XmlTextReader Try reader = New Xml.XmlTextReader("c:\xhtml1.html") While (True) Dim bolRead As Boolean = False Try bolRead = reader.Read() Catch ex As System.Net.WebException '握りつぶす End Try If Not bolRead Then Exit While Console.WriteLine(reader.Value) End While Finally If Not reader Is Nothing Then reader.Close() End Try
|