-
decodeURI() 函数,用于解码用encodeURI()函数编码的字符或字符串...
decodeURI() 函数,用于解码用encodeURI()函数编码的字符或字符串-decodeURI () function is used to decode using encodeURI () function is encoded character or string
- 2022-06-18 09:35:34下载
- 积分:1
-
network
一款网络工作室原码,亲测无误,适合于才创业的朋友做自己公司的主页。安全性高,开发性大,外观漂亮。(A network studios original code, pro-test is correct, it is suitable for business friends do their own company s home page. Safety, development of large, beautiful appearance.)
- 2014-04-26 03:18:52下载
- 积分:1
-
VC―网络与通信
VC―网络与通信-VC-networking and communications
- 2023-05-21 18:10:02下载
- 积分:1
-
以太网触摸屏STM32F107_ETH_LCD(神舟IV号)Telnet远程登录V1.1
【实例简介】以太网触摸屏STM32F107_ETH_LCD(神舟IV号)Telnet远程登录V1.1
- 2021-09-08 00:31:11下载
- 积分:1
-
SNSimpleVideoPlayer
说明: 基于WPF的媒体播放器,可实现播放暂停等基本操作(Media Player Based on WPF)
- 2020-06-23 13:40:02下载
- 积分:1
-
Pretty small loading control, with a time of new on the list
漂亮的loading小控件,用的时候new一个就行了-Pretty small loading control, with a time of new on the list
- 2022-05-21 12:43:05下载
- 积分:1
-
tcpserver
一个能够接受TCP/IP连接的服务器源代码(One can accept TCP/IP connection the server source code)
- 2011-04-26 10:52:28下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1
-
简单聊天室服务器源码
简单聊天室服务器源码-simple chat room server source
- 2022-04-15 00:20:02下载
- 积分:1
-
Chat_demo
服务器,客户端聊天小程序,可能功能有点简单,但是原理都在(The server, the client chat applet)
- 2013-09-03 11:12:31下载
- 积分:1