ASP.NET Web Forms HyperLinkIt is a control that is used to create a hyperlink. It responds to a click event. We can use it to refer any web page on the server. To create HyperLink either we can write code or use the drag and drop facility of visual studio IDE. This control is listed in the toolbox. This is a server side control and ASP.NET provides own tag to create it. The example is given below. Server renders it as the HTML control and produces the following code to the browser. This control has its own properties that are tabled below.
Example// user-form.aspx This property window shows properties for the HyperLink control. Output: This link redirects to Javatpoint home page.
Next TopicASP.NET RadioButton
|