摘要:
今天终于把文件传输问题给研究明白了,特发此代码用来帮助正在学习的人们。 send : Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->stringpath="E:\\c#\\convey_file\\convey_fil... 阅读全文
摘要:
private string path = "F:\\SmartMovie.EXE"; //要发送的文件 private Socket s; private void listen() { string ip = "1... 阅读全文
摘要:
public void Expandnodes(Microsoft.Web.UI.WebControls.TreeNode node,bool Expand) { foreach(Microsoft.Web.UI.WebControls.TreeNode n in node.Nodes) { if(n.Nodes.Count>0) { n.Expanded = Ex... 阅读全文
摘要:
MessageBox("消息内容", "返回值 确定1",MessageBoxButtons.OK,MessageBoxIcon.Question); MessageBox("消息内容",, "返回值 确定1 取消2",MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk); MessageBox("消息内容", "返回值 终止3 重试4 忽略5... 阅读全文
摘要:
server: Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Dgram,ProtocolType.Udp); IPEndPoint iep1 = new IPEndPoint(IPAddress.Broadcast, 9050);//255.255.255.255 ... 阅读全文
摘要:
FSO(FileSystemObject)是微软ASP的一个对文件操作的控件,该控件可以对服务器进行读写、新建、修改、删除目录以及文件的操作。是ASP编程中非常有用的一个控件。 但是因为权限控制的问题,很多虚拟主机服务器的FSO反而成为这台服务器的一个公开的后门,因为客户可以在自己的ASP网页里面直接就对该控件编程,从而控制该服务器甚至删除服务器上的文件。 因此不少业界的虚... 阅读全文
摘要:
Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->1usingSystem; 2usingSystem.Net; 3usingSystem.Net.Mail; 4usingSystem.Text;... 阅读全文
摘要:
DataGrid: aspx中 cs中 co.con(); ... 阅读全文
摘要:
SQL: using System.Data.SqlClient; string sql = "server=.;uid=sa;pwd=;database=tablename;"; ACCESS: using System.Data.OleDb; string sql = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source=" + HttpRuntime... 阅读全文
摘要:
服务端: SERVER SEND RECEIVE TcpListener tl = new TcpListener(IPAddress.Any, 9999); Socket s = tl.AcceptSocket(); byte[] bt = new byte[1024]; int count = s.Receive(bt)... 阅读全文