HyperLink target (_blank, _parent, _search, _self, _top) HyperLink is an ASP.NET web server control that allows us to display a link to another web page. HyperLink server control provides a way to work with hyperlinks in server code. HyperLink Target property gets or sets the target window or frame in which to display the web page content linked to when the hyperlink is clicked. This property value type is a String. This property has the following possible values _blank, _parent, _search, _self, and _top. Target property value _blank renders the linked content in a new window without frames. The property value _parent renders the content in the immediate frameset parent. Target property value _search renders the content in the search pane. Not all web browsers support the _search. _self property value renders the content in the frame with focus. The _top renders the linked content in the full window without frames. The following ASP.NET...
Android, .NET C#, Flutter, and Many More Programming tutorials.