Author: Zelzer | Posted on: 12/20/2009 1:38:37 PM | Views : 1061

 Hi everyone! I have a problem with this code:
using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Net.Sockets; using System.IO; using System.Threading; namespace ClientServerApp { public partial class _Default : System.Web.UI.Page { Thread thread2; public _Default() { } protected void Page_Load(object sender, EventArgs e) { } protected void Button2_Click(object sender, EventArgs e) { InitClient(); } private string message; private BinaryReader reader; private BinaryWriter writer; private Thread t ...

Go to the complete details ...