摘要:
http://www.webgain.com/news_and_events/press_releases/010417.html
webgain and hp collaborate to bridge java and .net environments
santa clara and palo alto, calif., april 17, 2001 – webgain......
摘要:
c#,自然的进步
随着 visual j++ 的隐退,microsoft 引入 c# 来填补这一空白
michael l. perry
mallard 软件设计师
2000 年 8 月
microsoft 对因特网的新视野与当今在线内容的网络相去甚远。microsoft 预见未来的因特网是一个由不同的人用不同的语言在不同的硬件平台上开发出的互相关联的服务,可以被运行在不同的因特......
如何使用C#访问POP3服务器(转)
//希望通过这篇文章,你可以用c#写出自己的email客户端程序
this is a follow up to my smtp example that shows how to access your pop3 server. this program connects and logs on to your pop3 server, and checks to see how many new messages you have.
the instantiation of the pop is in main() like this:
pop pop = new pop("pop-server", "loginname", "password"); you must replace "pop-server" with the name of your pop server, "loginname" with your own log in, and "password" with your password. the class has two methods. the connect method takes care of actually logging in to the server. the tcpclient class is used to establish the connection. the "user" and "pass" commands are used to login. connect returns a networkstream object created during the connection process. the second method is getnumberofnewmessages, which returns the number of unread messages on the server. the response to the "stat" command is parsed to extract the number of new messages.
requirement:
requires .net sdk
how to compile?
...
下一页 摘要:
the following example shows the use of regular expresssions in c#.this program has basic validation scripts for validation easily useable in all programs.
/*
<howtocompile>
csc /r:sys......