Your Ad Here


Go Back   VIPrapid.com > WEBMASTERS ZONE > Programming

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-06-2009, 04:58 AM
VIP
 

Join Date: Mar 2009
Location: india
Posts: 236
Default C# [IP Finder]

using System;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;

namespace DreamInCode.Snippets
{
****public class IpFinder
****{
********public static IPAddress GetExternalIP()
********{
************string whatIsMyIp = "http://whatismyip.com";
************string getIpRegex = @"(?<=)";
************WebClient wc = new WebClient();
************UTF8Encoding utf8 = new UTF8Encoding();
************string requestHtml = "";
************try
************{
****************requestHtml = utf8.GetString(wc.DownloadData(whatIsMyIp));
************}
************catch (WebException we)
************{
****************// do something with exception
****************Console.Write(we.ToString());
************}
************Regex r = new Regex(getIpRegex);
************Match m = r.Match(requestHtml);
************IPAddress externalIP = null;
************if (m.Success)
************{
****************externalIP = IPAddress.Parse(m.Value);
************}
************return externalIP;
********}
****}
}
Reply With Quote
  #2 (permalink)  
Old 03-06-2009, 05:32 PM
VIP
 

Join Date: Mar 2009
Posts: 204
Default

well i don't understand that but if u can provide me this in C or C++
Reply With Quote
  #3 (permalink)  
Old 03-06-2009, 07:32 PM
Junior Member
 

Join Date: Mar 2009
Posts: 1
Default

hello bro, please clearly........................
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #4 (permalink)  
Old 03-07-2009, 09:36 AM
VIP
 

Join Date: Mar 2009
Posts: 204
Default

well this program will find internal ip or external ip
Reply With Quote
  #5 (permalink)  
Old 03-08-2009, 07:41 AM
VIP
 

Join Date: Mar 2009
Posts: 36
Default

hello friend,what are the * symbols given in the left side?
Reply With Quote
  #6 (permalink)  
Old 03-08-2009, 07:52 AM
VIP
 

Join Date: Mar 2009
Location: India
Posts: 55
Smile Not Clear

Dude

It not clear what to do with program. So please clear it how to use in TC or any were else.
Reply With Quote
  #7 (permalink)  
Old 03-08-2009, 10:24 AM
VIP
 

Join Date: Mar 2009
Posts: 102
Default

how to use this program. clear it and make us know
Reply With Quote
  #8 (permalink)  
Old 03-08-2009, 08:15 PM
Junior Member
 

Join Date: Mar 2009
Posts: 6
Default

this code connect to whatismyip.com and copy the ip there, so the ip is external.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT. The time now is 04:09 PM.


Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.0
Ad Management by RedTyger
eXTReMe Tracker