The theme of this year’s Imagine Cup is "Imagine a world where technology enables a sustainable environment." It had been a great honorary for me to take part as one the Judges of the 2008 Imagine Cup Australia. All the teams worked real hard and came up with breathtaking solutions. The interesting part was solutions were built on top of cutting edge technologies technologies ie. Silverlight, Virtual Earth, LINQ, ASP.NET 3.5, WCF, .NET 3.5 and SQL2005. The Project SOAK is announced the winner of ......
Couple of days back me and my colleague, we discovered an issue with the ASP.NET Multi View Control. We were surprised to see that it do not add ViewState, of the dynamically added controls, of the Inactive Tabs. ASP.NET 2.0 <asp:MultiView ID="MultiView1" runat="server" EnableViewState="true"> </asp:MultiView> C# Code Behind if (!IsPostBack) { int index = 1; foreach (View v in MultiView1.Views) { TextBox t = new TextBox(); t.ID = index.ToString(); t.Text = "This text will not be assigned, ......