1.

LinkButton property to open a url in new tab from code?

Answer»

LinkButton property to OPEN a url in new tab from code?
Here in below code we use LinkButton control to create a hyperlink-style BUTTON on the Web page. In Below code LinkButton control has the same appearance as a HyperLink control and on another SIDE it has the same functionality as a Button control. And if we need to open link to another Web page/other tab when the LinkButton is is clicked. Below is the code for both c#.net and vb.net:-

c# code
LinkButton1.Attributes.Add("href","../TestURL.aspx");
LinkButton1.Attributes.Add("target","_blank");


vb.net code
Dim lnkbtn as LinkButton = e.Row.FindControl("LinkButton1")
lnkbtn.Attributes.Add("href","../TestURL.aspx")
lnkbtn.Attributes.Add("target","_blank")



Discussion

No Comment Found