Tagged Questions

4
votes
7answers
319 views

How to stay connected to the programming community?

I often find myself detached from the programming community and I generally find out about all the "cool" things that are happening after they have already happened. So my question is how do you stay …
1
vote
2answers
562 views

C# Socket.Connected property is changed to false after calling Socket.Receive

int readCount; byte[] buffer = new byte[128]; SocketError socketError; TcpClient tcpClient = tcpListener.AcceptTcpClient(); tcpClient.Client.ReceiveTimeout = 500; // #1 // tcpClient.Client.Connected …
0
votes
0answers
38 views

MOSS 2007 - Using Connectable WebPart - Consumer has TextBox

I have 2 webparts which are connected, where the provider sends a string to the consumer. However it fails to work if I put any TextBox controls in the consumer webpart. (works fine if I use a Label …