本文介绍了在asp.net中搜索可用的域名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 你好朋友, 在我们项目的一个项目中,我们必须创建一个可用的域名搜索框。但是我们有时间错误。 这是我们的代码hello friends,in 1 of our project ,we have to create an available domain search box.But we are getting time out error .This is our codestring sld = txtsearch.Text.Trim(); // URL for API request const string url = "https://kats.supersite.myorderbox.com/api/domains/available.json?api-key=000000000000000&password=00000000$$&domain-name=domain1&tlds=com"; // Load the API results into an XmlDocument object var xmlDoc = new XmlDocument(); //const string url2 = url.Replace("&", "&"); xmlDoc.Load(url); // Read the results var rrpCode = xmlDoc.SelectSingleNode("/interface-response/RRPCode").InnerText; var rrpText = xmlDoc.SelectSingleNode("/interface-response/RRPText").InnerText; // Perform actions based on results switch (rrpCode) { case "210": Console.WriteLine("Domain available"); break; case "211": Console.WriteLine("Domain not available"); break; default: Console.WriteLine("{0} {1}", rrpCode, rrpText); break; } Console.Read(); 请帮助我们纠正此问题。事先知道朋友。Please help us in rectifying this. thnaks in advance friends.推荐答案 请帮助我们纠正此问题。事先知道朋友们。Please help us in rectifying this. thnaks in advance friends. 这篇关于在asp.net中搜索可用的域名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 09-13 10:06