Sign In
Tips of the Day on .NET
Find some tips & tricks that are related to .NET technologies from this blog.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ASP.net
ASP.NET AJAX
Friend Assemblies
General .NET
If Operator
Implicit Typed Array
Layered Architecture
Local Variable Type Inference
Mobile Development
Office Business Application
SilverLight
Team Foundation Server 2008
Tip & Tricks
Tips & Tricks
Tricks & Tips
Videos
Visual Basic 9.0
Visual Studio
Visual Studio 2008
Visual Studio Team System
Windows Communication Foundation
Windows Mobile 6.0
Windows Server 2008
Windows Workflow Foundation
WPF
Archive
Archives
April 2008
(2)
March 2008
(6)
February 2008
(10)
January 2008
(3)
December 2007
(2)
November 2007
(7)
October 2007
(6)
September 2007
(3)
August 2007
(4)
July 2007
(6)
June 2007
(6)
May 2007
(5)
April 2007
(8)
March 2007
(6)
February 2007
(11)
January 2007
(12)
December 2006
(8)
November 2006
(11)
October 2006
(9)
September 2006
(8)
August 2006
(5)
July 2006
(6)
November, 2007
MSDN Blogs
>
Tips of the Day on .NET
>
November, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Tips of the Day on .NET
How to reserve the URLs to host the WCF service
Posted
over 5 years ago
by
tolong
1
Comments
Run into this error when running your WCF service? This is because you have not reserve the url to host your WCF service. Try this solution: 1. Open a Command Prompt as Administrator 2. Execute this command : netsh http add urlacl url=htpp://+:8080/ user...
Tips of the Day on .NET
Visual Studio 2008 is RTM!!
Posted
over 5 years ago
by
tolong
1
Comments
Yesterday at TechEd Europe we announced that Visual Studio 2008 and the .NET Framework 3.5 will be released by the end of November. There are some video recordings on the Channel 9: Lap around Visual Studio 2008 & .NET Framework 3.5 What's new...
Tips of the Day on .NET
Tool for Mapping Word 2007 to Custom XML
Posted
over 5 years ago
by
tolong
1
Comments
Working on OpenXML? so, how easy it is to map the content controls in word document to custom XML? You can use Content Control Toolkit , to assist you to create a data-bound document, and it's also a good developer tool for learning about the markup you...
Tips of the Day on .NET
WCF & WF Sample Application - Layered Architecture
Posted
over 5 years ago
by
tolong
3
Comments
This is a sample application that is built by one of my colleuges -- Serena Yeoh, to illustrate how to develop .NET applications using the Layered Architecture design pattern. It is not a full-blown application but a simple example to demonstrate the...
Tips of the Day on .NET
Read / Write XML in Memory Stream
Posted
over 5 years ago
by
tolong
1
Comments
Use the XmlWriter to write XML to Memory Stream: MemoryStream stream = new MemoryStream (); XmlWriter writer = XmlWriter .Create(stream); http://msdn2.microsoft.com/en-us/library/ms162617.aspx or you can use the XmlDocument to save xml document to...
Tips of the Day on .NET
Current .NET technology?
Posted
over 5 years ago
by
tolong
1
Comments
What is current .NET technology ? If you are using .NET 1.0 or 2.0, are you considering yourself using current .NET technology? The definition for current .NET technology: Use .Net Framework 3.X or Silverllight or ASP.NET where .Net Framework 3.X = .NET...
Tips of the Day on .NET
Display .tiff image??
Posted
over 5 years ago
by
tolong
1
Comments
You can display the tiff image using Through ImageDraw's DrawImage method. http://www.velocityreviews.com/forums/t108565-display-tiff-image.html http://www.neodynamic.com/ND/FaqsTipsTricks.aspx?tabid=66&prodid=4&sid=4 http://www.thescripts.com...
Page 1 of 1 (7 items)