private void Page_Load(object sender, System.EventArgs e)
{
            Dns dns;
string hostname;
hostname=Dns.GetHostName();
IpAddress ip=DNS.Resolve(hostname);
lblshow.Text="机器名称"+hostname+"IP地址为:"+ip;
}以上错在哪呢?