21 April 2010 0 Comments

Belgian eID integrated with ASP.NET applications

A couple of weeks ago we had a Windows Identity Foundation workshop in Belgium delivered by Vittorio Bertocci . Frank Cornelis from FedICT was very quick to apply this knowledge and make it so you can now easily use the Belgian electronic ID cards with your ASP.NET applications.

13 April 2010 0 Comments

Register now for the Visual Studio 2010 Launch event

  Join us for a free, in-person event you won’t want to miss Join a select group of developers for an event near you and get hands-on experience with Microsoft ® Visual Studio ® 2010. Learn about the rich application platforms that Microsoft Visual Studio 2010 supports, including Windows ® 7, the Web, SharePoint ® 2010, Windows Azure ™ , and Windows Phone 7 Series. Visual Studio 2010 is packed with new and enhanced features that simplify the entire development process from design to deployment.

13 April 2010 0 Comments

Stahujte finální verze Visual Studia 2010

Plné verze z MSDN Downloadu: http://msdn.microsoft.com/cs-cz/subscriptions/cc137115(en-us).aspx Trial verze: http://www.microsoft.com/visualstudio/en-us/download Free Express verze : http://www.microsoft.com/express/Downloads/     Buri

11 April 2010 0 Comments

13 апреля – лекция Брайана Харри в ГУ ВШЭ

Приглашаем читателей нашего блога, их друзей и вообще всех студентов, интересующихся разработкой ПО, на открытую лекцию Брайана Харри , которая пройдёт в здании ГУ-ВШЭ на ул. Кирпичная, д.33., в ауд. 219 в 13-30, 13 апреля

2 April 2010 0 Comments

SharePoint Application Page Button Click Not Working After First Click

I was recently working on a SharePoint Application Page and encountered an issue whereby button clicks were only working for the first click.  The second and subsequent clicks weren’t working. The issue appears to be due to SharePoint interfering with the JavaScript that is necessary to process an ASP.NET post-back.  Anyway, adding an OnClientClick attribute as illustrated in the following example resolved the issue for me.  I hope this helps you to overcome this issue if you happen to encounter it also! <asp:Button ID=”btnMybutton” runat=”server” OnClick=”btnMybutton_OnClick” Text=”Button” OnClientClick=”_spFormOnSubmitCalled = false;” />