pecha

Stories kicked by pecha

Using the Bing Maps Silverlight control on the Windows Phone 7(silverlighthack.com)

submitted by bartczernickibartczernicki(503) 1 year, 10 months ago

Learn how to overcome some of the challenges to get the Bing Maps Silverlight control to work on the Windows Phone 7 phone. Source code is included with the article. read more...

add a comment |category: |Views: 40

tags: another

T4MVC Add-In to auto run template(blog.waynebrantley.com)

submitted by wayne.brantleywayne.brantley(30) 1 year, 10 months ago

T4MVC is a fantastic solution to avoid 'Magic Strings' in ASP.NET MVC. Thanks to David Ebbo for this contribution which has made its way to MVCContrib. Must keep T4 template open and save it once. This has been the only negative thing about the template. I thought about writing an Add-In for VS to do this and even taked to David about doing it. Well, his latest post has inspired me to write one. I took my dot net less plug in and ripped nearly everything out of it, threw in about 5 lines of new code and it is done. Configuration There isn't any. Just install the add-in and it should work. It watches for any save, add, or remove event to the solution and runs the T4 template at that time. As long as you have the T4MVC.tt file in your project it will run. read more...

add a comment |category: |Views: 33

tags: another

Free ASP.NET MVC eBook Tutorial - ScottGu(weblogs.asp.net)

submitted by beckelmwbeckelmw(2755) 2 years, 11 months ago

There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now – announcement coming soon). As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it. Over the last few months I’ve been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox. The book is now in production, and will be available to buy in stores soon read more...

2 comments |category: |Views: 782

tags: another

Moonlight 1.0 Release(weblogs.asp.net)

submitted by sharplifesharplife(4560) 3 years ago

Now Linux lovers can enjoy Silverlight streaming media with Moonlight 1.0. Read what Scott Guthrie tells us about this open source implementation of Silverlight. read more...

add a comment |category: |Views: 149

tags: another

Correct event invocation(dotnettipoftheday.org)

submitted by pechapecha(105) 3 years, 11 months ago

Be aware that if there are no subscribers a .NET event will be null. Therefore when raising the event from C# test it for null first. read more...

add a comment |category: |Views: 6

tags: another

ScottGu: First Look at Using Expression Blend with Silverlight 2(weblogs.asp.net)

submitted by JemmJemm(9604) 3 years, 11 months ago

In this first set of Silverlight tutorials I didn't use a visual design tool to build the UI, and instead focused on showing the underlying XAML UI markup (which I think helps to explain the core programming concepts better). Now that we've finished covering the basics - let's explore some of the tools we can use to be even more productive. read more...

1 comment |category: |Views: 12

tags: another

How to check email works with no SMTP(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 1 month ago

Testing code that sends email has always been a pain. You had to set up a SMTP service just to test that your .NET application sends the e-mail correctly... read more...

2 comments |category: |Views: 82

tags: another

Use DebuggerBrowsable attribute to clean up class view in a debugger(dotnettipoftheday.org)

submitted by gt1329agt1329a(7849) 4 years, 2 months ago

How to exclude extraneous class members from view in the debugger. read more...

1 comment |category: |Views: 8

tags: another

Scott Guthrie: Visual Studio 2008 and .NET 3.5 Released(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 4 years, 2 months ago

Scott's announcement on the release of Visual Studio 2008 and .NET 3.5. read more...

5 comments |category: |Views: 24

tags: another

Speed up inserting records into database with SqlBulkCopy class(dotnettipoftheday.org)

submitted by pechapecha(105) 4 years, 2 months ago

When you need to insert a great deal of rows into database... read more...

add a comment |category: |Views: 67

tags: another

ASP.Net MVC Framework Part 1(weblogs.asp.net)

submitted by isuttleisuttle(1140) 4 years, 2 months ago

Scott Guthrie provides some great insight into the upcoming ASP.Net MVC framework. read more...

4 comments |category: |Views: 31

tags: another

Create elegant code with Action delegate and List.ForEach method(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 3 months ago

Small example of how to use Action delegate to perform some action on all elements of a collection. read more...

9 comments |category: |Views: 625

tags: another

Building a File Path with Path.Combine (.NET)(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 4 years, 3 months ago

When using a variety of input methods to accept a file path and file name, the format of the results can vary. To avoid the problems of checking for path separator characters and adding or removing them as required, .NET provides a method to provide this. read more...

1 comment |category: |Views: 10

tags: another

ScottGu VS.net performance tips for machine(weblogs.asp.net)

submitted by dovedove(735) 4 years, 3 months ago

Specifically - "what type of machine do you recommend I get for doing development with Visual Studio?" read more...

5 comments |category: |Views: 20

tags: another

ASP.NET 2.0 Membership, Roles, Forms Authentication, and Security Reso(weblogs.asp.net)

submitted by tamer_zahrantamer_zahran(20) 4 years, 3 months ago

A very good resources from ScottGu's Blog. read more...

add a comment |category: |Views: 64

tags: another

Handling errors at the method level(dotnettipoftheday.org)

submitted by dmihailescudmihailescu(25) 4 years, 3 months ago

[Use a combination of try…Catch blocks as a retry mechanism for error handling. ] If you were going to retry something ,you better use conventioal error handling and keep the throw...catch for exceptional cases only. Try/catch is known to be slow. read more...

add a comment |category: |Views: 1

tags: another