PopUp Browser Window With HTTP Header

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there,
I know about Process.Start class/methods.

I was wanting to know how to pop up a browser window from a Winform and not
only supply the Url which is straightforward but also supply Header info,
specifically referrer info.

Thanks
Richard
 
Hi Richard,

You mean something as this?

Dim p As New System.Diagnostics.ProcessStartInfo()
p.FileName = "C:\filename.html"
System.Diagnostics.Process.Start(p)
 
* "Cor Ligthert said:
You mean something as this?

Dim p As New System.Diagnostics.ProcessStartInfo()
p.FileName = "C:\filename.html"
System.Diagnostics.Process.Start(p)

Sure you read the OP's post?

I know, it's early in the morning... ;-).
 
Hi Richard,

Herfried showed me I did read your message wrong, what you mean with the
header info.

You mean something as a response to a not existing page?

Sorry for giving the wrong answer.

Cor
 
Back
Top