Código ASP:
Ver original
Private Sub w_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles w.Navigating Dim wc As System.Net.WebClient = New System.Net.WebClient Dim texto$ = wc.DownloadString(e.Url) Dim ff% = FreeFile() FileOpen(ff, "c:\iniciotemp.html", OpenMode.Output) PrintLine(ff, texto) FileClose(ff) w.Navigate("file://c:\iniciotemp.html") end sub
osea codigo de fuente que lee codigo de fuente que descarga, quiero que al pulsar CTRL no descarge seria algo así como poner un if y tal, he leido pero me cambian el byval e o no se que movidas.. me lia un monton..