ASP.NET get hostname asp.net - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

get hostname asp.net


 110

ASP.NET


0

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js "></script>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "POST",
contentType: "application/json;charset=utf-8",
url: "Default.aspx/DisplayData",
data: '{}',
dataType: "json",
success: function (data) {
$("#lbltxt").text(data.d);
},
error: function (result) {
alert("Error");
}
});
});
</script>

</head>
<body>
<form id="form1" runat="server">
<div>
<label id="lbltxt" runat="server"></label>
</div>
</form>
</body>
</html>

//copy into Default.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;
using System;
using System.Net;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
[WebMethod]
public static string DisplayData()
{
return "hostname: " + Dns.GetHostName();
}
}


By        
The power of the user (%)
15%



The most helpful ASP.NET solutions

detect mobile device asp.net detect mobile device asp.net ASP.NET

Click to see more ...

  550     61

How display a value from DropDownList ASP.NET using CHow display a value from DropDownList ASP.NET using CASP.NET

Click to see more ...

  376     45

get client machine name asp.netget client machine name asp.netASP.NET

Click to see more ...

  297     23

check if cookie exists using asp.netcheck if cookie exists using asp.netASP.NET

Click to see more ...

  654     20

check if cookie exists asp.netcheck if cookie exists asp.netASP.NET

Click to see more ...

  174     9

get client computer name asp.netget client computer name asp.netASP.NET

Click to see more ...

  121     6

get hostname asp.netget hostname asp.netASP.NET

Click to see more ...

  110     1

Welcome aboard!
We are happy you are here and
wish you good net-raft!