DotNetShoutout - Stories tagged with .NET
3
Shouts

Swiss company found swiss knife for web development of business apps

published 1149 days, 20 hours, 29 minutes ago posted by webguiwebgui 1151 days, 1 hour, 50 minutes ago
Friday, April 02, 2010 2:27:29 PM GMT Thursday, April 01, 2010 9:06:12 AM GMT
"As opposed to ASP.NET with Visual WebGui you don't have to master all the languages and toggle between the different layers… This is really rapid application development so you can focus on your business logic." Joachim Rönn (more)
category: Web Dev | clicked: 0 | comment | | source: www.visualwebgui.com
tags: .NET, Programming, Development, developers, Web, UI, Ajax, apps, ASP.NET, Admin, business applications
6
Shouts

DeepFriedBytes - Episode 50: Behind the Scenes of the .NET Languages with Luca Bolognese

published 1150 days, 22 hours, 36 minutes ago posted by mithumithu 1151 days, 21 hours, 11 minutes ago
Thursday, April 01, 2010 12:19:54 PM GMT Wednesday, March 31, 2010 1:45:40 PM GMT
About This Episode Ever wonder how your favorite features from C#, VB.NET and F# get selected, implemented and finally reach your fingers? We did too and we found a great person to get the behind the scenes story from Building 41 in Redmond. In this episode, Keith and Woody sat down with Luca Bolognese, former Group Program Manager at Microsoft, to discuss how the languages team decides which features to include in the .NET languages.  We learn also what is coming in NET 4.  Join us for this episode as ... (more)
category: Podcast | clicked: 0 | comment | | source: deepfriedbytes.com
tags: .NET, C#, VB.NET, Microsoft, DeepFriedBytes, F#, NET 4.0
11
Shouts

Cleaner HTML Markup with ASP.NET 4 Web Forms - Client IDs (VS 2010 and .NET 4.0 Series) - ScottGu's Blog

published 1149 days, 57 minutes ago posted by mithumithu 1152 days, 8 hours, 20 minutes ago
Saturday, April 03, 2010 9:59:13 AM GMT Wednesday, March 31, 2010 2:36:47 AM GMT
Today’s post is the first of a few blog posts I’ll be doing that talk about some of the important changes we’ve made to make Web Forms in ASP.NET 4 generate clean, standards-compliant, CSS-friendly markup.  Today I’ll cover the work we are doing to provide better control over the “ID” attributes rendered by server controls to the client. [In addition to blogging, I am also now using Twitter for quick u... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, ASP .NET, Visual Studio, ASP .NET 4, CSS, ScottGu
4
Shouts

Using WatiN to Leverage Common Elements in Web Testing

published 1153 days, 4 hours, 32 minutes ago posted by martinigmartinig 1153 days, 20 hours, 20 minutes ago
Tuesday, March 30, 2010 6:23:59 AM GMT Monday, March 29, 2010 2:36:21 PM GMT
WatiN is an easy to use, feature rich framework for Web Application Testing in .Net. This article provides some practical insight into creating automation based on the WatiN framework. It presents a well thought out and proven foundation for general web testing. (more)
category: Agile | clicked: 3 | 1 comment | | source: www.methodsandtools.com
tags: .NET, functional testing, Test Automation, testing tool, watin, software testing, Web Testing
5
Shouts

Inversion of Control – An Introduction with Examples in .NET

published 1153 days, 4 hours, 32 minutes ago posted by http://webpoet.myopenid.com/http://webpoet.myopenid.com/ 1154 days, 4 hours, 26 minutes ago
Tuesday, March 30, 2010 6:23:59 AM GMT Monday, March 29, 2010 6:30:40 AM GMT
By using Inversion of Control we are able to build more flexible and well designed applications. In this simple introduction I quickly describe, using examples in C#, what IoC is and how we can implement it using either Dependency Injection or Service Locator. (more)
category: Architecture | clicked: 4 | 2 comments | | source: joelabrahamsson.com
tags: IoC, .NET, Inversion of control, Dependecy Injection, DI, Architecture, Service Locator
8
Shouts

DeepFriedBytes - Episode 49: Getting the Right Message about NServiceBus with Udi Dahan

published 1150 days, 22 hours, 36 minutes ago posted by mithumithu 1154 days, 13 hours, 5 minutes ago
Thursday, April 01, 2010 12:19:54 PM GMT Sunday, March 28, 2010 9:51:37 PM GMT
In this episode Keith and Woody sat down with Udi Dahan, the creator of NServiceBus, to discuss and learn more about this open source messaging framework for designing distributed .NET enterprise systems. The guys chat about how to work with NServiceBus and the best practices with the framework. (more)
category: Podcast | clicked: 1 | comment | | source: deepfriedbytes.com
tags: .NET, nServiceBus, DeepFriedBytes
4
Shouts

outcoldman: Method extension for safely type convert

posted by http://outcoldman.ru/en/site/indexhttp://outcoldman.ru/en/site/index 1157 days, 13 hours, 46 minutes ago
Thursday, March 25, 2010 9:10:39 PM GMT
Recently I read good Russian post with many interesting extensions methods after then I remembered that I too have one good extension method “Safely type convert”. Idea of this method: i = "1".To (more)
category: How To | clicked: 0 | comment | | source: outcoldman.ru
tags: .NET, Extension Methods, Convert, Parse, C
5
Shouts

Web 2.0 | Putting a Bing Search on your Website

posted by farooqkaiserfarooqkaiser 1157 days, 14 hours, 4 minutes ago
Thursday, March 25, 2010 8:51:59 PM GMT
In this article, i will examined how to integrate Microsoft Bing Search engine on your site. First, you would have to get APPID from Microsoft site. Here is a link.  In next step, in your project add the following web reference. http://api.search.live.net/search.wsdl?AppID=YourAppId Here is code snippets to make a call in c#. 1: LiveSearchService service = new LiveSearchService(); 2: SearchRequest request = new SearchRequest(); 3:  4: request.AppId = "YOUR APPID"; 5: requ... (more)
category: Web Dev | clicked: 3 | comment | | source: www.fairnet.com
tags: .NET, C#, ap.net
4
Shouts

Moles – isolate your tested unit - [Export] Bnaya Eshet

posted by bnayabnaya 1157 days, 20 hours, 15 minutes ago
Thursday, March 25, 2010 2:41:31 PM GMT
Moles – isolate your tested unit Moles – isolate your tested unit   this post will focus on the Moles - Isolation framework for .NET. you can download the Moles framework from here, or even better download the Pex testing framework (that includes Moles) from here. (I will survey the Pex framework in one of the upcoming posts).   the code sample for this post is available here.  How do you test the correctness of the following method?Code SnippetpublicclassMyComponent{    privateDateTime _lastH... (more)
category: Architecture | clicked: 2 | comment | | source: blogs.microsoft.co.il
tags: .NET, Test, Mock, Moles, Pex
3
Shouts

Social Activity Management SaaS solution built & deployed with VWG

posted by webguiwebgui 1158 days, 27 minutes ago
Thursday, March 25, 2010 10:29:12 AM GMT
"Working with Visual WebGui is similar to developing client server applications… saves a lot of development effort… and you have to take care only of the business and data logic affecting the GUI," (more)
category: Web Dev | clicked: 0 | comment | | source: www.visualwebgui.com
tags: .NET, Framework, Web, UI, web development, web developers, SaaS, business applications
9
Shouts

March 21st Links: ASP.NET, ASP.NET MVC, AJAX, Visual Studio, Silverlight - Scott Guthrie

published 1158 days, 21 hours, 46 minutes ago posted by jantujantu 1161 days, 22 minutes ago
Wednesday, March 24, 2010 1:09:53 PM GMT Monday, March 22, 2010 10:34:32 AM GMT
If you haven’t already, check out this month’s "Find a Hoster” page on the www.asp.net website to learn about great (and very inexpensive) ASP.NET hosting offers.[In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu]ASP.NET URL Routing in ASP.NET 4: Scott Mitchell has a nice article that talks about the new URL routing features coming to Web Forms applications with ASP.NET 4.  Also ... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: Link Listing, .NET, Silverlight, Visual Studio, ScottGu, Community News, ASP.NET
3
Shouts

5 Tips on using Rapid Application Development (RAD)

published 1161 days, 19 hours, 21 minutes ago posted by HatimRHatimR 1162 days, 12 hours, 53 minutes ago
Sunday, March 21, 2010 3:34:52 PM GMT Saturday, March 20, 2010 10:03:46 PM GMT
As consultants which I believe most of the reader of this blog are, or even if you are a developer working for a software company, time is always of the essence. We are always trying to do more in less time ... (more)
category: Architecture | clicked: 0 | comment | | source: hatim.indexdev.net
tags: .NET, RAD, Rapid Application Development
7
Shouts

Building a Windows Phone 7 Twitter Application using Silverlight - ScottGu's Blog

published 1162 days, 16 hours, 6 minutes ago posted by mithumithu 1163 days, 23 hours, 58 minutes ago
Saturday, March 20, 2010 6:50:43 PM GMT Friday, March 19, 2010 10:58:06 AM GMT
On Monday I had the opportunity to present the MIX 2010 Day 1 Keynote in Las Vegas (you can watch a video of it here).  In the keynote I announced the release of the Silverlight 4 Release Candidate (we’ll ship the final release of it next month) and the VS 2010 RC tools for Silverlight 4.  I also had the chance to talk for the first time about how Silverlight and XNA can now be used to build Windows Phone 7 applications. During my talk I did two quick Windows Phone 7 coding demos using Silverlight – a q... (more)
category: How To | clicked: 2 | comment | | source: weblogs.asp.net
tags: .NET, Silverlight, Windows Phone 7, Windows Phone, Visual Studio, ScottGu, Community News
6
Shouts

.NET Framework/ASP.NET/C# Development Ultimate Learning Resources (Tutorials for Beginners to Advanced) | {Programming} & Life

published 1167 days, 23 hours ago posted by http://grahamoneale.myvidoop.com/http://grahamoneale.myvidoop.com/ 1168 days, 5 hours, 16 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Monday, March 15, 2010 5:40:44 AM GMT
Today I am taking a few minutes time-out to share some links with you I found for a friend today who wished to start out learning ASP.NET web development. I’m sharing them because I was absolutely astonished at how hard it was to find any decent, rich tutorial resources on the topic of ASP.NET and C# development. Many of the top ranking links on Google I felt did not either start at the right place, were too complicated for beginners or was missing information, but more so I wanted to hand on a single ... (more)
category: Web Dev | clicked: 1 | 1 comment | | source: goneale.com
tags: .NET, C#, ASP.NET
7
Shouts

Piracy in .NET /Silverlight Code – Part 1 – Even when the code is obfuscated

published 1167 days, 23 hours ago posted by reshmireshmi 1168 days, 18 hours, 18 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Sunday, March 14, 2010 4:38:12 PM GMT
This is going to be a series of posts where I am going to demonstrating how someone with little advanced knowledge in .NET can hack in to the code, and circumventing licensing logic. I know there are other ways to prevent this ,which I am not going to be discussing about. The usual assumption is that, if the code is obfuscated and signed , then it is close to impossible for someone to hack in to the code because the method names and variables are jumbled up, which would prevent someone from figuring wha... (more)
category: Architecture | clicked: 1 | comment | | source: naveensrinivasan.com
tags: .NET, WinDbg, Silverlight 3, Debugging
5
Shouts

Bidirectional Integrity: IEnumerable and read only Entity properties

published 1167 days, 23 hours ago posted by http://sblakemore.com/blog/http://sblakemore.com/blog/ 1168 days, 23 hours, 40 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Sunday, March 14, 2010 11:16:21 AM GMT
Keeping your bidirectional relationships in sync and providing a clean API for consumers which only exposes the operations you want them to see. (more)
category: Architecture | clicked: 0 | comment | | source: sblakemore.com
tags: .NET, C#, DDD
4
Shouts

YouTube - Rich Ajax Web Applications Development Demo

posted by webguiwebgui 1172 days, 22 hours, 23 minutes ago
Wednesday, March 10, 2010 12:33:01 PM GMT
Ajax empowered Web applications development with the complete Develop/Design/Run Visual WebGui Platform version (more)
category: Web Dev | clicked: 0 | 1 comment | | source: www.youtube.com
tags: web design, .NET, web application development, web 2.0, Programming, Framework, developers, Web, UI Design, UI, ASP .NET, web development, Ajax, applications
6
Shouts

DotNetRocks - Show #531 - Toad + .NET = Datadude for Oracle

published 1172 days, 23 hours, 27 minutes ago posted by mithumithu 1173 days, 12 hours, 16 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Tuesday, March 09, 2010 10:40:10 PM GMT
Carl and Richard talk to Daniel Norwood and Daniel Wood (I know) from Quest Software, makers of Toad - data tools for Oracle. Now providing Toad Extention for Visual Studio .NET, bringing all of the Datadude features of Visual Studio to Oracle developers. (more)
category: Podcast | clicked: 0 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks, .NET, developers, Toad, Visual Studio, Oracle, Datadude
3
Shouts

Automatic Factories With Unity 2.0

posted by xunilrjxunilrj 1176 days, 6 hours, 5 minutes ago
Sunday, March 07, 2010 4:51:13 AM GMT
Unity 2.0 comes with new features. But the feature i want to talk about is "Automatic Factory". This feature is useful when one class has a dependency in another but may not need to have the instance of dependency in the constructor. Or, just want to create the dependency in another time. (more)
category: Architecture | clicked: 16 | comment | | source: www.machinaaurum.com.br
tags: Unity, IoC, .NET, C#, DI
4
Shouts

ProSysPlus Blog: The Empty Client and The Cloud

published 1177 days, 20 hours, 22 minutes ago posted by webguiwebgui 1179 days, 1 hour, 49 minutes ago
Friday, March 05, 2010 2:33:53 PM GMT Thursday, March 04, 2010 9:07:49 AM GMT
"...I read about the cloud being used for complex data-based applications, that latency could well be an issue... This is the issue that Visual WebGui solves: what is essentially a Windows Forms application runs on the Visual WebGui server, and only the image of the application is transmitted to the client, and only the users actions are transmitted back to the Visual WebGui server. They call this the Empty Client model..." (more)
category: Architecture | clicked: 0 | comment | | source: blog.prosysplus.com
tags: .NET, Cloud, Security, cloud applications, Programming, data, Cloud Computing, Software