|
|
dwahlin
dwahlin
 |
|
Stories submitted by dwahlin
|
|
submitted by
dwahlin
1 year, 2 months ago
weblogs.asp.net — If you work with a large number of applications then you know what a pain it can be to manage multiple web.config files and multiple connection strings for development, staging/test, and production databases. This article discusses an alternative that allows connection strings to be consolidated into a single file that can be shared across mutliple applications. It also shows how connection strings can be loaded dynamically based upon a URL which can greatly simplify getting correct connection strings for dev, staging, and production databases. read more...
add a comment
|
category: ASP.NET | Views: 6
|
|
tags:
web.config, DanWahlin, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 3 months ago, submitted by
dwahlin
1 year, 3 months ago
weblogs.asp.net — This article provides a step by step guide to creating a custom ASP.NET AJAX extender control based upon functionality in the ASP.NET AJAX Toolkit. The tutorial covers creating the JavaScript file, embedding it in an assembly, and referencing it from a server-side control. The end result is an extender control that can freeze a GridView header and allow for scrolling of rows. read more...
add a comment
|
category: AJAX | Views: 20
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
published 1 year, 4 months ago, submitted by
dwahlin
1 year, 4 months ago
weblogs.asp.net — This video tutorial provides an introductory look at VS.NET 2008 and shows a few new features such as multi-targeting, split view, and the LinqDataSource control. read more...
|
|
tags:
LinqDataSource, Video, VisualStudio, .net3.5, 2008 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 7 months ago, submitted by
dwahlin
1 year, 7 months ago
weblogs.asp.net — The Amazon.com AlbumViewer application originally written using WPF/E has been updated to use Microsoft's latest Silverlight release along with ASP.NET AJAX. The application can be viewed live online and all of the source code is available. read more...
add a comment
|
category: AJAX | Views: 4
|
|
tags:
Silverlight, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 7 months ago, submitted by
dwahlin
1 year, 7 months ago
weblogs.asp.net — Anonymous methods are a new feature in C# 2.0 that allow you to hook an action directly to an event as opposed to having a separate event handler. They can also be used anytime a method accepts a delegate as a parameter. This article provides a glimpse into how anonymous methods can be used in C#. read more...
add a comment
|
category: C# | Views: 2
|
|
tags:
C#2.0, C#, AnonymousMethods | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 8 months ago, submitted by
dwahlin
1 year, 8 months ago
weblogs.asp.net — This video tutorial demonstrates how data can be bound to ASP.NET server controls using the SqlDataSource. It covers using control parameters, how stored procedures or inline SQL statements can be used, and how controls can be embedded inside of other controls such as the DetailsView by using templates. read more...
add a comment
|
category: ASP.NET | Views: 1
|
|
tags:
ServerControls, Video, ASP.NET, DanWahlin | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
dwahlin
1 year, 8 months ago
weblogs.asp.net — This video tutorial walks you through the fundamentals of calling Web Services asynchronously from an ASP.NET page using the .NET 2.0 event driven model exposed by Web Service proxy objects. There are several different options for calling Web Services asynchronously including polling, callbacks and wait handles, but the event driven model is quite easy to use and does not put as much pressure on the ASP.NET thread pool as the other options.
read more...
|
|
tags:
WebServices, ASP.NET, .net2.0 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 8 months ago, submitted by
dwahlin
1 year, 8 months ago
weblogs.asp.net — The video discusses how to create a Web Service from scratch using the .NET framework and also discusses some of the pros and cons that you should know about. read more...
|
|
tags:
WebService, WebServices, DanWahlin, Video | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 9 months ago, submitted by
dwahlin
1 year, 9 months ago
weblogs.asp.net — Back in December I released a sample application that demonstrated how WPF/E and ASP.NET AJAX could be integrated to view albums returned from an Amazon.com Web Service in a simulated 3D type view. I finally made some time to get the application running live so feel free to take it for a spin. read more...
add a comment
|
category: AJAX | Views: 0
|
|
| tag it
Everyones tags: | Your tags: | |
No tags
|
|
|
|
|
published 1 year, 9 months ago, submitted by
dwahlin
1 year, 9 months ago
weblogs.asp.net — In this video tutorial Dan Wahlin walks you through the fundamentals of creating an N-Layer ASP.NET application. This includes creating presentation, business, data and model layers. read more...
|
|
tags:
Video, nLayer, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 10 months ago, submitted by
dwahlin
1 year, 10 months ago
weblogs.asp.net — Windows Communication Foundation (WCF - part of .NET 3.0) provides a robust framework that allows Web Services and .NET Remoting applications to be built and consumed using a consistent object model. In this video tutorial Dan Wahlin walks through the fundamentals of creating a WCF service exposed through HTTP and IIS. Topics covered include defining a data contract using XSD schemas, generating data entity code using svcutil.exe, creating a service interface, implementing a service interface and consuming a service through a client-side proxy. read more...
add a comment
|
category: Web Services | Views: 85
|
|
tags:
WebService, WCF, Video | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 10 months ago, submitted by
dwahlin
1 year, 10 months ago
weblogs.asp.net — It's no secret that events and delegates play a crucial role in the .NET framework. Without them it would be hard to handle user input or notify other objects when an action occurs. In this video Dan Wahlin outlines the fundamentals of creating a custom class that exposes an event and a delegate. The video also demonstrates how to create a custom EventArgs class and how events can be consumed using C#. read more...
add a comment
|
category: C# | Views: 23
|
|
tags:
Events, Delegates, C#, Video | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 10 months ago, submitted by
dwahlin
1 year, 10 months ago
weblogs.asp.net — In this video Dan Wahlin show's an album viewer application that demonstrates how to tie ASP.NET AJAX and WPF/E together to display content to users in a more visual manner. Source code for the application is available. read more...
|
|
tags:
ASP.NET, wpf/e, Video, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|