首页 > 编程 > .NET > 正文

c#.net如何获取本机ip

2024-07-10 13:07:26
字体:
来源:转载
供稿:网友

using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
using system.net;

namespace webapplication5
{
 /// <summary>
 /// webform1 的摘要说明。
 /// </summary>
 public class webform1 : system.web.ui.page
 {
  protected system.web.ui.webcontrols.textbox textbox1;
 
  private void page_load(object sender, system.eventargs e)
  {
   // 在此处放置用户代码以初始化页面
   string   strhostip="";  
   iphostentry   oiphost=dns.resolve(environment.machinename);  
   if(oiphost.addresslist.length>0)  
    strhostip=oiphost.addresslist[0].tostring();  
   this.textbox1.text=strhostip;
  
  }

  #region web 窗体设计器生成的代码
  override protected void oninit(eventargs e)
  {
   //
   // codegen: 该调用是 asp.net web 窗体设计器所必需的。
   //
   initializecomponent();
   base.oninit(e);
  }
 
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void initializecomponent()
  {   
   this.load += new system.eventhandler(this.page_load);

  }
  #endregion
 }
}

 


trackback: http://tb.blog.csdn.net/trackback.aspx?postid=762769

[点击此处收藏本文]   发表于 2006年05月30日 09:41:00

 


kwanhong 发表于2006-06-02 11:01:00  ip: 211.162.74.*
using system.net;

iphostentry localhost =
dns.gethostentry(dns.gethostname());

ipaddress address = localhost.addresslist[0];

console.writeline(address.tostring());

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表