Posts tagged framework 2.0
Getting the control that posted back to asp.net application
Oct 7th
Need to know which specific control posted back to your page? (Original article at http://geekswithblogs.net/mahesh/archive/2006/06/27/83264.aspx)
/// <summary>
/// Tells us which control posted back
/// </summary>
/// <returns></returns>
public Control getPostBackControlName()
{
Control control = null;
//first we will check the “__EVENTTARGET” because if post back made by the controls
//which used “_doPostBack” function also available More >
Client Socket Programming in C# using the built in libraries – a fully working production example Part 2
Jan 16th
My previous article which you can find at http://blog.xploiter.com/index.php/2009/01/16/socket-programming-in-c-using-the-built-in-libraries-a-fully-working-production-example-part-1/ covered the creation of a solid production ready Socket Server written in C#. I promised to follow up with part 2 which would be a suitable client so without further ado, here we go
Socket Programming in C# using the built in libraries – a fully working production example Part 1
Jan 16th
One of the things i’ve noticed over the last few months in particular is the lack of decent programming examples in C# for a suitable client/server socket solution that just works! I was working on a contract that needed a robust and stable communications mechanism between multiple PC’s on a closed network for a Railway Simulator and Aircraft Simulator I was working on.