|
|
crpietschmann
Stories submitted by crpietschmann
|
|
submitted by
crpietschmann
2 days, 10 hours ago
weblogs.asp.net — Then last month while speaking at Orlando ASPConnections, I was demoing some AJAX calls on stage, and an audience member told me that Fiddler will work on 127.0.0.1 with a trailing . on the IP address. So the address ends up like ... read more...
|
|
tags:
Tools, ASP.NET, Tips, fiddler | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
3 days, 15 hours ago
blog.madskristensen.dk — The new BlogEngine.NET 1.4 let’s you easily create and distribute widgets like the ones you see on the right hand side on this page. Widgets are basically just small pieces of content and you can leverage the entire .NET Framework to create them. They can pull data from BlogEngine.NET itself or from external sources like web services or remote XML files. Everything is allowed and possible. read more...
add a comment
|
category: Open Source | Views: 6
|
|
tags:
ASP.NET, Widget, OpenSource, BlogEngine.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
4 days, 19 hours ago
communitycodingcontest.org — Contest entries are now being accepted for the Community Coding Contest! Just register on the site, then go to the Submit Entry page to submit your entry. Remember, don't forget to review the entire Contest Rules before submitting your entry. Also, as soon as your entry is submitted it will be displayed on the website and made available for download for others to see and play around with. When submitting your entry, you will be given the option to enter a url where your project is hosted at, if your already hosting it somewhere, you be able to upload a ZIP file containing your project entry, and you'll be able to upload a screenshot to be displayed on the contest website. Happy Coding and Good Luck!!
read more...
add a comment
|
category: Community | Views: 4
|
|
tags:
contest, Community | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
6 days, 18 hours ago
blog.madskristensen.dk — Basically, the IHttpAsyncHandler interface allows you to serve content asynchronously from a HTTP handler. This is great when you need to free up the worker thread to do processing like IO work etc. ASP.NET actually uses fewer threads when it runs asynchronously, which is great for performance and scalability. That’s because each thread is returned much faster to the thread pool. read more...
add a comment
|
category: ASP.NET | Views: 5
|
|
tags:
httphandler, ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
9 days, 16 hours ago
pietschsoft.com — The Community Coding Contest will run from July 1 through Sept. 30, 2008. The community will vote to decide the winners. The top 3 entries will each be awarded 1 MSDN Premium Subscription with Visual Studio Team Suite, and the 4th place entry will be awarded Windows Vista Ultimate SP1 and Visual Studio 2008 Professional. Here's an awesome chance to write some code and win some awesome prizes! I am also looking for sponsors to donate additional prizes to give away. read more...
add a comment
|
category: Community | Views: 8
|
|
tags:
VisualStudio, SQLServer, Community, contest | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
9 days, 23 hours ago
pietschsoft.com — The problem with using WebParts with UrlRewriting (or UrlMapping) is the WebPart PersonalizationProvider uses the path of the page being rendered to save/load the personalization state, not the path that was rewritten that the user sees. So, to fix this you just need to create a custom PersonalizationProvider and override all the methods that reference path, and call the base methods but pass in the path that was requested instead of the path being rendered. Here's a SqlPersonalizationProvider I wrote that does this: read more...
add a comment
|
category: ASP.NET | Views: 7
|
|
tags:
WebParts, UrlRewriting, ASP.NET, UrlMapping | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
10 days, 15 hours ago
blogs.msdn.com — I worked on a more creative/reusable approach to hosting Virtual Earth in a WPF application. If you have looked at any of my previous samples showing how to host Virtual Earth in a WPF app, you'll recall I was using the WinForms WebBrowser control to host an html page that in turn hosts Virtual Earth. Additionally, I used the WebBrowser control's ability to enable communication between managed code and JavaScript. One of the frustrations with this approach is that when using WinForms interop, all WinForms controls take the highest z-order in your app which means you cannot render WPF elements on top of the map. The other thing that has always bothered me about my sample is although it showed how to implement the general approach, it did not wrap all the functionality into a reusable WPF Virtual Earth control. Good news! I have an updated sample. read more...
|
|
tags:
Mapping, VirtualEarth, WPF | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
10 days, 15 hours ago
pietschsoft.com — Now that we've Made Sense of the U.S. Census ZCTA ARC/INFO Ungenerate (ASCII) files in Part 1 of this series, we are ready to import the U.S Census ZCTA Zip Code data into a database. In Part 2, we'll create database tables and import the Zip Code Boundary data into those tables in a MS SQL 2005 database. read more...
add a comment
|
category: Database | Views: 2
|
|
tags:
USCensus, Mapping, Database, VirtualEarth | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 10 days, 12 hours ago, submitted by
crpietschmann
11 days, 17 hours ago
haacked.com — I used to find the smart tag really annoying in Visual Studio because it is such a small target to hit with the mouse. Silly me, trying to expand a smart tag with a mouse. When you highlight the tag with your mouse, it tells you that the keyboard combination of ALT + SHIFT + F10 will expand the menu. read more...
add a comment
|
category: Visual Studio | Views: 133
|
|
tags:
VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
11 days, 22 hours ago
blogs.msdn.com — A reader recently asked me to expand on the ASP.NET Authentication + Silverlight concept I started.. Specifically they wanted to do know how they can have a web service that returns different results depending on who calls the service (and what role they are in). Here is my quick walk through of adding that capability to the Silverlight+ASP.NET AppServices sample. read more...
add a comment
|
category: Silverlight | Views: 8
|
|
tags:
Authentication, ASP.NET, Silverlight | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
14 days, 20 hours ago
codeproject.com — This article will be useful for any custom component developer who wants to update his/her controls so they will work correctly with ASP.NET AJAX. First, we will describe the most common problems that occur during such customizations and then propose the solution for those issues. read more...
add a comment
|
category: AJAX | Views: 7
|
|
tags:
JavaScript, ASP.NET, AJAX | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 13 days ago, submitted by
crpietschmann
14 days, 21 hours ago
angryhacker.com — Just like its predecessor, SQL Server 2008 is taking its sweet time to actually ship. However, unlike its predecessor, it won't just be a "worthwhile upgrade". It will kick ass. Here are the top 10 reasons why. read more...
add a comment
|
category: Database | Views: 903
|
|
tags:
SQL, SQLServer, 2008, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
15 days, 16 hours ago
pietschsoft.com — The data I'll focus on here is the Census 2000 5-Digit ZIP Code Tabulation Areas (ZCTAs) in ARC/INFO Ungenerate (ASCII) format. Even though these files are in their own "special" format, described here, they are still just plain ASCII and easily converted into CSV files to be imported into a database. Well, you could look at the ARC/INFO Generate (ASCII) Metadata Cartographic Boundary File Format definition and write a parser that then saves in in a CSV format. Or, you could just download and use the one I wrote for this article. read more...
add a comment
|
category: Other | Views: 5
|
|
tags:
C#, Mapping, VirtualEarth, USCensus | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
15 days, 20 hours ago
soulsolutions.com.au — In Virtual Earth we use lat/lon pairs everywhere, for pushpins, polylines and polygons but also for map bounds like the current view. This article aims to look at a better way to store and transmit these values. The encoding algorithm used is from Google maps. You will find an explanation of how and why we use it for Virtual Earth. read more...
add a comment
|
category: AJAX | Views: 16
|
|
tags:
JavaScript, Mapping, C#, AJAX, VirtualEarth | tag it
Everyones tags: | Your tags: | |
|
|
|
|

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