DotNetShoutout - Latest published stories (page 448)
7
Shouts

Trips&Ticks: How to implement GroupName for RadioButton in WPF DataGrid's column?

published 1241 days, 7 hours, 15 minutes ago posted by http://rredcat.blogspot.com/http://rredcat.blogspot.com/ 1242 days, 10 hours, 12 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 9:14:37 AM GMT
Download source files - here It is very easy. We should use DataGridTemplateColumn for this. My acquaintance requested to me show it. I added source code where implemented this. Some notes: (more)
category: How To | clicked: 4 | comment | | source: rredcat.blogspot.com
tags: WPF DataGrid, DataGrid, WPFToolKit, WPF
9
Shouts

Get Url from sitemap.xml using Linq2Xml

published 1241 days, 7 hours, 15 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 1242 days, 12 hours, 35 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 6:51:53 AM GMT
Problem You want to get url link from sitemap.xml file. Solution: After downloading sitemap.xml string from internet by using WebClient, you can easy get url link form it by using Linq2Xml. Here is the snippets code both C# and VB.NET For demo purpose I use Console application. C# using System; using System.Linq; using System.Net; using System.Xml.Linq;   namespace CS {     classProgram     {         staticvoid Main(string[] args)         {             WebClient client = ne... (more)
category: Smart Client | clicked: 0 | comment | | source: code2code.info
tags: linq2xml
11
Shouts

A basic proxy for intercepting method calls (Part –2) - Mehfuz's WebLog

published 1241 days, 7 hours, 15 minutes ago posted by http://mehfuzh.myopenid.com/http://mehfuzh.myopenid.com/ 1243 days, 11 hours, 18 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Saturday, January 23, 2010 8:08:53 AM GMT
Saturday, January 23, 2010 2:04 PM mehfuzh A basic proxy for intercepting method calls (Part –2) In my previous post , i introduced a basic proxy that intercepts methods. But what is missing in the proxy is that it does not consider method arguments and can not handle return types. In this post, i will enhance the proxy to support exactly those. First of all, i modified the IIntercept.Intercept() to accept IInvocaiton interface. The interface is pretty si... (more)
category: Agile | clicked: 1 | comment | | source: weblogs.asp.net
tags: C#, MSIL
9
Shouts

Show images in Silverlight by reading images from SharePoint library

published 1241 days, 7 hours, 15 minutes ago posted by PraveenPraveen 1243 days, 22 hours, 39 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 8:48:26 PM GMT
Hi, Silverlight works on client side, so it's not possible to add SharePoint libraries in Silverlight project. But we have a way that we can access SharePoint data and show it up in Silverlight in SharePoint site. We have a requirement where we need to pull data from the SharePoint libraries and lists and show the data in Silverlight. Here i will explain a scenario where we can pull the images from image library and show it in Silverlight. Follow the steps below to do this. Get data from ShareP... (more)
category: Metro | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: Silverlight, XML, XSLT, Sharepoint
8
Shouts

Code Tech Blog: Custom Paging And Jump to a Page Using LINQ (SEO Friendly Custom Paging)

published 1241 days, 7 hours, 15 minutes ago posted by hunterz85hunterz85 1244 days, 47 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 6:39:28 PM GMT
The main disadvantage of the custom paging in my previous article is, the pager links are not simply a hyper link to a page. Instead, they are associated with javascript which makes a postback to bind the current page records and thus making it not search engine friendly. A link is search engine friendly if it has a target page associated with it through href property. Search engines will automatically reach the target page and will index those pages in this case. Moving forward, in this article we wil... (more)
category: Web Dev | clicked: 4 | comment | | source: codetechblg.blogspot.com
tags: Custom Paging, GridView, SEO Paging, Linq, Linq Data Source, ASP.NET
9
Shouts

IIS Application Warm-Up Module

published 1241 days, 7 hours, 15 minutes ago posted by gpeipmangpeipman 1243 days, 22 hours, 20 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 9:06:44 PM GMT
During one of my sessions I demonstrated how to use IIS Application Warm-Up Module. Some applications need to perform initialization tasks before taking requests from users. Application warm-up module is very good tool for this because it does not depend on script language or any other aspect of web application. In this posting I will show you how to use application warm-up module with simple PHP script. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: PHP, IIS
9
Shouts

A Tale of Two Principle Violations

published 1241 days, 7 hours, 15 minutes ago posted by KodefuGuruKodefuGuru 1241 days, 14 hours, 24 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Monday, January 25, 2010 5:02:32 AM GMT
When I decided to write the With statement in Fluent.NET, I never imagined that I would encounter a common bug and school myself in principles that I happen to present on. But that is what occurred, and I want to share it so others can avoid the same mistakes I made. With is a Fluent version of Add, only it returns the object or interface it is acting upon rather than void. This allows you to chain methods together in a fluid manner. Instead of calling strings.Add(“Hello”); strings.Add(“World”);, you ca... (more)
category: Agile | clicked: 0 | comment | | source: www.kodefuguru.com
tags: Liskov, Fluent.NET, Fluent Interface
10
Shouts

The Angry .Net Developer: Agile Ado.Net Persistence Layer : Part 2 Use DTOs (Data Transfer Objects)

published 1241 days, 7 hours, 15 minutes ago posted by ali62bali62b 1242 days, 13 hours, 5 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 6:21:43 AM GMT
What container are we going to use to pass data between the layers of our application?  The usual answers I hear are either DataTables/DataSets or full business objects.  I don’t like any of these options. DataSets and DataTables come with significant overhead and they don’t contain strongly typed data.  Business objects do contain strongly typed data, but they typically contain a lot of extra business logic that I don’t need, and they may even contain persistence logic.  I don’t want any of that.  I wan... (more)
category: Architecture | clicked: 0 | comment | | source: rlacovara.blogspot.com
tags: ADO.NET Data Services
7
Shouts

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1

published 1241 days, 7 hours, 15 minutes ago posted by ali62bali62b 1242 days, 13 hours, 23 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 6:04:15 AM GMT
Contents [hide]1 Introduction 2 System Design 2.1 Requirement Analysis 3 Functionality Design 4 Architecture Design 5 Database Design 5.1 Database Requirements Analysis 5.2 Tables Design 5.3 Stored Procedures 6 Summary Build a Front End of an E-commerce System Using ASP.NET MVC Framework SeriesPart 1 Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1Part 2 Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2 Introduction With the rapid de... (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetslackers.com
tags: ASP.NET MVC, projects
8
Shouts

Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 2

published 1241 days, 7 hours, 15 minutes ago posted by ali62bali62b 1242 days, 13 hours, 22 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Sunday, January 24, 2010 6:04:54 AM GMT
Contents [hide]1 Model Design 1.1 Creating the Data Model Using LINQ to SQL 1.2 Designing a Helper Class 2 Controller Design 2.1 The Controller HomeController 2.2 The Controller UserCenterController 3 View Design 3.1 The Index.aspx View 3.2 The Search.aspx View 3.3 The BookList.aspx View 3.4 The BookDetails.aspx View 3.5 The Shopping Cart Related Views 3.6 The Order Inquiry Related Views 4 Summary Build a Front End of an E-commerce System Using ASP.NET MVC Framework SeriesPart 1 Build a Fro... (more)
category: Web Dev | clicked: 1 | comment | | source: dotnetslackers.com
tags: ASP.NET MVC, projects
10
Shouts

mozilla frefox enter button problem in asp.net.

published 1241 days, 7 hours, 15 minutes ago posted by PraveenPraveen 1243 days, 22 hours, 35 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 8:52:14 PM GMT
i am facing a small problem, which ate my mind almost 10 hours. Introduction: I am using Updatepanel [Ajax] in my site. According to my client specification, in which panel or div cursor focus on, when he/her press enter, the corresponding panel button click event will fire and request goes to server and gives response. i am using control on my pages, because it has the property called DefaultButton. So, this will work perfectly for me if and only if, user browse my site in IE. then what about Mozill... (more)
category: Web Dev | clicked: 0 | comment | | source: praveenbattula.blogspot.com
tags: Button, Mozilla, JavaScript, Event, Firefox
16
Shouts

Innovation Showcase : Architect Innovation Cafe Webcast-Visual Studio Tools For Architects

published 1241 days, 7 hours, 15 minutes ago posted by bobfamiliarbobfamiliar 1244 days, 2 hours, 10 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 5:16:48 PM GMT
22 January 2010Architect Innovation Cafe Webcast-Visual Studio Tools For Architects Each month through June 2010, we’ll bring you a 60-minute Architect focused Webcast to educate on the latest trends/topics and how new technologies can align with your business needs. February 25, 2010 at 1:00pm – 2:00pm EST Title: Visual Studio Tools For Architects Abstract:Come learn how the new code visualization, UML, and Architectural Validation tools inside Visual Studio 2010 come together to help you under... (more)
category: Podcast | clicked: 0 | comment | | source: blogs.msdn.com
tags: UML, Architect Cafe, Model Driven Development
10
Shouts

About Technical Debates (and ASP.NET Web Forms and ASP.NET MVC debates in particular) - ScottGu's Blog

published 1241 days, 7 hours, 15 minutes ago posted by ali62bali62b 1241 days, 12 hours, 54 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Monday, January 25, 2010 6:32:44 AM GMT
[In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu] Technical debates are discussed endlessly within the blog-o-sphere/twitter-verse, and they range across every developer community. Each language, framework, tool, and platform inevitably has at least a few going on at any particular point in time. Below are a few observations I’ve made over the years about technical debates in general, as well as some comments about some of the... (more)
category: Architecture | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, ScottGu, ASP.NET
13
Shouts

ASP.NET MVC with Castle Validators, fluentHtml, and jQuery

published 1241 days, 7 hours, 15 minutes ago posted by http://derans.myopenid.com/http://derans.myopenid.com/ 1244 days, 14 hours, 39 minutes ago
Monday, January 25, 2010 12:11:40 PM GMT Friday, January 22, 2010 4:47:59 AM GMT
I ran into a SNAFU because my required validation wasn’t working on the controller side of the house. If people submitted the form with “street address”, “city”, or “postal code”, it would post. Not a good thing! (more)
category: Web Dev | clicked: 0 | comment | | source: derans.blogspot.com
tags: ASP.NET MVC, Castle
10
Shouts

Performance Optimizations Made By Microsoft, Google, and Yahoo JavaScript Minimizers - Nick Berardi

published 1242 days, 7 hours, 43 minutes ago posted by iftekharahmedamitiftekharahmedamit 1244 days, 4 hours, 26 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Friday, January 22, 2010 3:00:33 PM GMT
In my first post about JavaScript compression and the different levels supported by the three major competitors in the JavaScript minimization, obfuscation, and optimization tools space.  I the article I discussed which tool provided the best compression in regards to the resulting byte count.  And found that Google took the over all crown with Microsoft following very closely behind.  A comment posted on that article by Eric J. Smith of Code Smith, provided a nice lead in to my second article in this se... (more)
category: Web Dev | clicked: 1 | comment | | source: www.coderjournal.com
tags: optimization, Performance, JavaScript
9
Shouts

StackOverflow - Podcast #80

published 1242 days, 7 hours, 43 minutes ago posted by mithumithu 1245 days, 10 hours, 50 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Thursday, January 21, 2010 8:37:25 AM GMT
In this episode of the Stack Overflow podcast, Joel and Jeff discuss GitHub, the value of formal code documentation, and how to decide what features belong in the next version of your software. We’ve had some difficulty adapting to GitHub, where the reverse engineering of the Javascript Markdown (WMD) editor was performed. It regularly confuses everyone that encounters it, and that’s frustrating from a support perspective. For example, why does the MangOS project on GitHub have 854 branches? How is tha... (more)
category: Podcast | clicked: 0 | comment | | source: blog.stackoverflow.com
tags: C#, stackoverflow, JavaScript, GitHub
8
Shouts

Castle Windsor enabling XML configuration files in Silverlight at Primordial Code

published 1242 days, 7 hours, 43 minutes ago posted by jantujantu 1244 days, 6 hours, 33 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Friday, January 22, 2010 12:53:43 PM GMT
When a version of Castle Windsor able to run in Silverlight was released I started to play with it, basically because I have a lot of code that use it inside my line of business infrastructure framework. I’m working on a WPF/Silverlight solution and I’ve developed a framework that work in both the environments.One of the biggest thing I miss in every ‘Silverlight-enables’ IoC system I tried is the ability to read and parse XML configuration files.The current release does not allow Silverlight to pars... (more)
category: Metro | clicked: 0 | comment | | source: www.primordialcode.com
tags: Silverlight, XML, Configuration, file, Castle Windsor
10
Shouts

Agile ADO.Net Persistence Layer: Part 3 Service Class Data Access Methods

published 1242 days, 7 hours, 43 minutes ago posted by http://rlacovara.blogspot.com/http://rlacovara.blogspot.com/ 1247 days, 2 hours, 10 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Tuesday, January 19, 2010 5:17:20 PM GMT
When I say data access methods, I’m talking about the methods my UI is going to call whenever it needs to get data.  When my Posts controller needs a list of BlogPosts to display, it’s going to call a BAL method like GetAllBlogPosts() or GetAllBlogPostsForCategory().  Last time I mentioned (over and over) that I like to keep things simple.  When I need to get or save data, I don’t want to have to search through 3 different classes just to find the one with the method I need.  Instead, I’m putting all my ... (more)
category: Architecture | clicked: 1 | comment | | source: rlacovara.blogspot.com
tags: ADO.NET, DTO, POCO
10
Shouts

Youssef Moussaoui's WCF blog : How to Change .NET Configuration Files at Runtime (including for WCF)

published 1242 days, 7 hours, 43 minutes ago posted by silverymssilveryms 1244 days, 17 hours, 40 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Friday, January 22, 2010 1:46:48 AM GMT
How to Change .NET Configuration Files at Runtime (including for WCF) One of the most common issues people run into with WCF configuration, and .NET applications in general, is that configuration files appear to be fixed. You only have one configuration file for an executable, and you can’t use different configuration files as your exe.config while the application is running. Of course, you can always shut down the application, change the configuration, and then restart it with the new configuration fil... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.msdn.com
tags: Configuration, WCF
7
Shouts

Web access to Team Foundation Server.

published 1242 days, 7 hours, 43 minutes ago posted by http://rredcat.blogspot.com/http://rredcat.blogspot.com/ 1245 days, 34 minutes ago
Sunday, January 24, 2010 11:44:10 AM GMT Thursday, January 21, 2010 6:52:51 PM GMT
I have been starting to work with Team Foundation Server as source control and bag tracking system for 2 month. In this time we migrated from one TFS to another. So sometime we needed access to both these servers (one as bug track, another as source control). I said to my manager about web access tool for TFS he heard it already that this tool is very cool but expensive. It isn't truth. (more)
category: How To | clicked: 0 | comment | | source: rredcat.blogspot.com