ASP.NET get computer name 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 client computer name asp.net


 124

ASP.NET


2

// Default.aspx
<%@ 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>

// 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()
{
string machineName = System.Environment.MachineName;
return "machine name: " + machineName;
}
}


By        
The power of the user (%)
17%



The most helpful ASP.NET solutions

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

Click to see more ...

  552     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 ...

  377     45

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

Click to see more ...

  301     23

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

Click to see more ...

  659     20

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

Click to see more ...

  179     9

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

Click to see more ...

  124     6

get hostname asp.netget hostname asp.netASP.NET

Click to see more ...

  111     1

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