Welcome aboard! We are happy you are here and wish you good net-raft!
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:HyperLink ID="HyperLink1" runat="server"></asp:HyperLink>
</form>
</body>
</html>
//Default.aspx.cs
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
HyperLink1.Text = "net-raft.com";
HyperLink1.TabIndex = 1;
HyperLink1.AccessKey = "w";
HyperLink1.Target = "_blank";
HyperLink1.NavigateUrl = "https://net-raft.com";
}
}
The most helpful C# solutions
detect ie C#C#
Click to see more ...
5.7K
853
get latitude and longitude from ip address c#C#
Click to see more ...
3.4K
257
get real user country C#C#
Click to see more ...
2.2K
252
Get real client ip address using C# ?C#
Click to see more ...
2.3K
247
check if cookie exists c#C#
Click to see more ...
7.1K
173
get city country region timezone c#C#
Click to see more ...
3.3K
163
How to detect the browser opera using C# in asp.net ?C#
Click to see more ...
2.8K
136
get hostname using C#C#
Click to see more ...
1.6K
127
Get real client latitude and longitude using C# ?C#
Click to see more ...
1.3K
127
how to initialize a connection to mysql database using C# ?C#
Click to see more ...
2.8K
122