asp+ First Experience---asp+ Domain name query program written in C #

Source: Internet
Author: User
Tags bool getstream connect tostring
Asp+| program finally have time to learn something new, today, a cursory look at the information about asp+, and wrote a domain name Query page, feeling very good, asp+ than
ASP to progress is too big, although using asp+ components can also realize the function of domain name query, and a few days ago I used VC wrote such a component, but with asp+ simple
It's much more convenient. Okay, cut the crap, look at the source.

<% @Page language= "C #"%>
<% @Assembly name= "System.Net"%>
<% @Import namespace= "System.Net.Sockets"%>
<% @Import namespace= "System.Text"%>
<% @Import namespace= "System.IO"%>
<% @Import namespace= "System.Collections"%>
<script language= "C #" runat= "Server" >
void Doquery (Object sender, EventArgs e)
{
String strdomain = Txtdomain.text;
Char[] Chsplit = {'. '};
string[] Arrdomain = Strdomain.split (chsplit);

int nlength = arrdomain[1]. Length;
Hashtable table = new Hashtable ();
Table. Add ("de", "whois.denic.de");
Table. ADD ("Be", "whois.dns.be");
Table. ADD ("gov", "whois.nic.gov");
Table. ADD ("Mil", "Whois.nic.mil");

String strserver; Define WHOIS server
If the DomainName ' s is-CN then the server is CNNIC, otherwise is networksolutions
if (arrdomain[arrdomain.length-1] = = "cn")
{
strserver = "159.226.6.139";
}
Else
{
strserver = "whois.networksolutions.com";
}

if (table. ContainsKey (Arrdomain[1])
{
strserver = table[arrdomain][1]]. ToString ();
}
else if (nlength = 2)
{
2-letter TLD ' s always default to ripe in Europe
strserver = "Whois.ripe.net";
}

String strresponse;
BOOL bsuccess = Dowhoislookup (Strdomain, strserver, out strresponse);
if (bsuccess)
{
Txtresult.text = Strresponse;
}
Else
{
Txtresult.text = "Lookup failed";
}
}

BOOL Dowhoislookup (String strdomain, String strserver, out string strresponse)
{
Strresponse = "None";
BOOL bsuccess = false;

TcpClient TCPC = new TcpClient ();
if (0 = = Tcpc. Connect (Strserver, 43))
{
Strdomain + = "\ r \ n";
byte[] Arrdomain = Encoding.ASCII.GetBytes (Strdomain.tochararray ());
Try
{
Stream s = tcpc. GetStream ();
S.write (arrdomain, 0, strdomain.length);

StreamReader sr = new StreamReader (TCPC. GetStream (), encoding.ascii);
StringBuilder Strbuilder = new StringBuilder ();
while ( -1!= Sr. Peek ())
{
Strbuilder.append (Sr. ReadLine () + "<br>");
}
Tcpc. Close ();

bsuccess = true;
Strresponse = Strbuilder.tostring ();
}
catch (Exception e)
{
Strresponse = E.tostring ();
}

return bsuccess;
}
Else
{
Strresponse = "Could not connect to Whois server";
return false;
}

return false;
}
</script>
<title></title>
<body>

<form runat= "Server" >
Domain name:www. <asp:textbox id= "Txtdomain" value= "" runat= "Server"/>
<asp:button id= "Btnquery" onclick= "Doquery" text= "query!" runat= "Server"/>
<br><asp:label id= "Txtresult" runat= "Server"/>
</form>

</body>



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.