A
ALI-R
I want when user clicks on LinkedLable ,an IE page to an specific address
opens ,how can I do that?
thanks
opens ,how can I do that?
thanks
Nicholas Paldino said:ALI-R,
Basically, you will want to handle the LinkClicked event for the link
label. In the handler, you would call the static Start method on the
Process class, passing the URL you want the default web browser to navigate
to.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
ALI-R said:I want when user clicks on LinkedLable ,an IE page to an specific address
opens ,how can I do that?
thanks
ALI-R said:this is my handler for LinkedLable:
this.linkLabel1.LinkClicked += new
System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkCl
icked);
how shall I change it? What is Proccess Class??
Thansk for your help.
in
message news:%[email protected]...ALI-R,
Basically, you will want to handle the LinkClicked event for the link
label. In the handler, you would call the static Start method on the
Process class, passing the URL you want the default web browser to navigate
to.
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)
ALI-R said:I want when user clicks on LinkedLable ,an IE page to an specific
address
opens ,how can I do that?
thanks