how to get-find ip address of client machine in asp.net using jquery
|
|
Introduction:
In this article I will explain how to get or find IP address of client machine in asp.net using JQuery.
In this article I will explain how to get or find IP address of client machine in asp.net using JQuery.
Description:
In previous posts I explained many articles relating to JQuery. Now I will explain how to get client machine IP address of client machine in asp.net using jquery. To implement this one write the code as shown below
In previous posts I explained many articles relating to JQuery. Now I will explain how to get client machine IP address of client machine in asp.net using jquery. To implement this one write the code as shown below
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Get Find IP Address of
Client machine using JQuery in asp.net</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$("#btnSubmit").click(function() {
$.getJSON("http://jsonip.appspot.com?callback=?",
function(data) {
alert("Your IP Address: " + data.ip);
})
.error(function() { alert("error");
})
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:button ID="btnSubmit" runat="server"
Text="Get IP
Address" />
</form>
</body>
</html>
|
If
you observe script in header section here we are calling webservice using JSON
calls this service is called as JSONP because we included parameter string “callback=?” in URL.
Demo
Your IP
Address:
180.151.55.134 |
Post a Comment
Oops!
The words you entered did not match the given text. Please try again.
Oops!
Oops, you forgot something.