<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>LieberLieber Software TeamBlog &#187; Asp.net</title>
	<atom:link href="http://blog.lieberlieber.com/tag/aspnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lieberlieber.com</link>
	<description>was uns treibt und verfolgt!</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:36:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WP7 authentication via asp.net applications</title>
		<link>http://blog.lieberlieber.com/2011/03/25/wp7-authentication-via-asp-net-applications/</link>
		<comments>http://blog.lieberlieber.com/2011/03/25/wp7-authentication-via-asp-net-applications/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 09:50:10 +0000</pubDate>
		<dc:creator>Simon Gorski</dc:creator>
				<category><![CDATA[Mobility]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=3371</guid>
		<description><![CDATA[During a recent consulting, I helped a client to resolve his authentication issues with his existing Web application and Windows Phone application. Using the existing MembershipProvider If you have already an existing Web application and you want to extend it throughout a Windows Phone application you can use the existing System.Web.ApplicationServices for the authentication. You [...]]]></description>
			<content:encoded><![CDATA[<p>During a recent consulting, I helped a client to resolve his authentication issues with his existing Web application and Windows Phone application.</p>
<p><a rel="lightbox" href="http://blog.lieberlieber.com/wp-content/uploads/image114.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.lieberlieber.com/wp-content/uploads/image_thumb93.png" border="0" alt="image" width="207" height="244" /></a></p>
<p><strong><em>Using the existing MembershipProvider<br />
</em></strong>If you have already an existing Web application and you want to extend it throughout a Windows Phone application you can use the existing <strong>System.Web.ApplicationServices </strong>for the authentication.</p>
<p><span id="more-3371"></span></p>
<p>You can do this by creating a new WCF service file and expose the built-in <strong>AuthenticationService</strong>.</p>
<pre><span style="color: blue;">&lt;</span><span style="color: maroon;">%@</span> ServiceHost <span style="color: red;">Language</span>="<span style="color: blue;">C#</span>"
<span style="color: red;">                Service</span>="<strong><span style="color: blue;">System.Web.ApplicationServices.AuthenticationService</span></strong>" %<span style="color: blue;">&gt;</span></pre>
<p>In the web.config of the Asp.net Web application you have to add following sections:</p>
<pre>  <span style="color: blue;">&lt;</span><span style="color: maroon;">system.web.extensions</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span><span style="color: maroon;">scripting</span><span style="color: blue;">&gt;</span>
      <span style="color: blue;">&lt;</span><span style="color: maroon;">webServices</span><span style="color: blue;">&gt;</span>
        <strong><span style="color: blue;">&lt;</span><span style="color: maroon;">authenticationService</span> <span style="color: red;">enabled</span>="<span style="color: blue;">true</span>" <span style="color: red;">requireSSL</span>="<span style="color: blue;">false</span>"/<span style="color: blue;">&gt;</span></strong>
      <span style="color: blue;">&lt;</span>/<span style="color: maroon;">webServices</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span>/<span style="color: maroon;">scripting</span><span style="color: blue;">&gt;</span>
  <span style="color: blue;">&lt;</span>/<span style="color: maroon;">system.web.extensions</span><span style="color: blue;">&gt;</span></pre>
<pre>  <span style="color: blue;">&lt;</span><span style="color: maroon;">system.serviceModel</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span><span style="color: maroon;">behaviors</span><span style="color: blue;">&gt;</span>
      <span style="color: blue;">&lt;</span><span style="color: maroon;">serviceBehaviors</span><span style="color: blue;">&gt;</span>
        <span style="color: blue;">&lt;</span><span style="color: maroon;">behavior</span> <span style="color: red;">name</span>="<span style="color: blue;"> </span>"<span style="color: blue;">&gt;</span>
          <span style="color: blue;">&lt;</span><span style="color: maroon;">serviceMetadata</span> <span style="color: red;">httpGetEnabled</span>="<span style="color: blue;">true</span>" /<span style="color: blue;">&gt;</span>
          <span style="color: blue;">&lt;</span><span style="color: maroon;">serviceDebug</span> <span style="color: red;">includeExceptionDetailInFaults</span>="<span style="color: blue;">false</span>" /<span style="color: blue;">&gt;</span>
        <span style="color: blue;">&lt;</span>/<span style="color: maroon;">behavior</span><span style="color: blue;">&gt;</span>
        <span style="color: blue;">&lt;</span><span style="color: maroon;">behavior</span> <span style="color: red;">name</span>="<span style="color: blue;">AuthenticationServiceBehaviors</span>"<span style="color: blue;">&gt;</span>
          <span style="color: blue;">&lt;</span><span style="color: maroon;">serviceMetadata</span> <span style="color: red;">httpGetEnabled</span>="<span style="color: blue;">true</span>" /<span style="color: blue;">&gt;</span>
        <span style="color: blue;">&lt;</span>/<span style="color: maroon;">behavior</span><span style="color: blue;">&gt;</span>
      <span style="color: blue;">&lt;</span>/<span style="color: maroon;">serviceBehaviors</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span>/<span style="color: maroon;">behaviors</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span><span style="color: maroon;">serviceHostingEnvironment</span> <span style="color: red;">aspNetCompatibilityEnabled</span>="<span style="color: blue;">true</span>"
                               <span style="color: red;">multipleSiteBindingsEnabled</span>="<span style="color: blue;">true</span>" /<span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span><span style="color: maroon;">services</span><span style="color: blue;">&gt;</span>
      <span style="color: blue;">&lt;</span><span style="color: maroon;">service</span> <span style="color: red;">name</span>="<span style="color: blue;">System.Web.ApplicationServices.AuthenticationService</span>" <span style="color: red;">
               behaviorConfiguration</span>="<span style="color: blue;">AuthenticationServiceBehaviors</span>"<span style="color: blue;">&gt;</span>
        <span style="color: blue;">&lt;</span><span style="color: maroon;">endpoint</span> <span style="color: red;">contract</span>="<span style="color: blue;">System.Web.ApplicationServices.AuthenticationService</span>"
            <span style="color: red;">binding</span>="<span style="color: blue;">basicHttpBinding</span>" /<span style="color: blue;">&gt;</span>
      <span style="color: blue;">&lt;</span>/<span style="color: maroon;">service</span><span style="color: blue;">&gt;</span>
    <span style="color: blue;">&lt;</span>/<span style="color: maroon;">services</span><span style="color: blue;">&gt;</span>
  <span style="color: blue;">&lt;</span>/<span style="color: maroon;">system.serviceModel</span><span style="color: blue;">&gt;</span></pre>
<p>You also need to configure the WCF service itself by using the <strong>AspNetCompatibilityRequirements</strong> attribute.</p>
<pre>[ServiceContract(Namespace = <span style="color: maroon;">"LieberLieber.Mobile"</span>)]
[SilverlightFaultBehavior]
<strong>[AspNetCompatibilityRequirements(
              RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]</strong>
<span style="color: blue;">public</span> <span style="color: blue;">class</span> CompanyService</pre>
<p>After you have added a service reference to the AuthenticationService.svc and CompanyService.svc you have to enable cookies for the Windows Phone application.</p>
<p>Add following attribute <strong>enableHttpCockieContainer</strong> and set the value to <em>true</em>.</p>
<pre>   <span style="color: blue;">&lt;</span><span style="color: maroon;">bindings</span><span style="color: blue;">&gt;</span>
       <span style="color: blue;">&lt;</span><span style="color: maroon;">basicHttpBinding</span><span style="color: blue;">&gt;</span>
           <span style="color: blue;">&lt;</span><span style="color: maroon;">binding</span> <strong><span style="color: red;">enableHttpCookieContainer</span>="<span style="color: blue;">true</span>"</strong> <span style="color: red;">name</span>="<span style="color: blue;">BasicHttpBinding_AuthenticationService</span>" <span style="color: red;">maxBufferSize</span>="<span style="color: blue;">2147483647</span>
               <span style="color: red;">maxReceivedMessageSize</span>="<span style="color: blue;">2147483647</span>"<span style="color: blue;">&gt;</span>
               <span style="color: blue;">&lt;</span><span style="color: maroon;">security</span> <span style="color: red;">mode</span>="<span style="color: blue;">None</span>" /<span style="color: blue;">&gt;</span>
           <span style="color: blue;">&lt;</span>/<span style="color: maroon;">binding</span><span style="color: blue;">&gt;</span>
           <span style="color: blue;">&lt;</span><span style="color: maroon;">binding</span> <strong><span style="color: red;">enableHttpCookieContainer</span>="<span style="color: blue;">true</span>"</strong> <span style="color: red;">name</span>="<span style="color: blue;">BasicHttpBinding_CompanyService</span>" <span style="color: red;">maxBufferSize</span>="<span style="color: blue;">2147483647</span>"
               <span style="color: red;">maxReceivedMessageSize</span>="<span style="color: blue;">2147483647</span>"<span style="color: blue;">&gt;</span>
               <span style="color: blue;">&lt;</span><span style="color: maroon;">security</span> <span style="color: red;">mode</span>="<span style="color: blue;">None</span>" /<span style="color: blue;">&gt;</span>
           <span style="color: blue;">&lt;</span>/<span style="color: maroon;">binding</span><span style="color: blue;">&gt;</span>
       <span style="color: blue;">&lt;</span>/<span style="color: maroon;">basicHttpBinding</span><span style="color: blue;">&gt;</span>
   <span style="color: blue;">&lt;</span>/<span style="color: maroon;">bindings</span><span style="color: blue;">&gt;</span></pre>
<p><strong>One important notice:</strong></p>
<p><strong> </strong></p>
<p><strong> </strong>If you need to update the service reference you will get following Microsoft Visual Studio error: “The configuration for the service reference could not be updated due to the following issue: Unrecognized attribute ‘enableHttpCockieContainer’.</p>
<p><a rel="lightbox" href="http://blog.lieberlieber.com/wp-content/uploads/image115.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.lieberlieber.com/wp-content/uploads/image_thumb94.png" border="0" alt="image" width="244" height="115" /></a></p>
<p>To resolve this issue just remove the attribute. Update the service reference and add the attribute again.</p>
<p>Within the Windows Phone application you can now use the <strong>AuthenticationService’s </strong>method <strong>LoginAsync</strong>.</p>
<pre><span style="color: blue;">    readonly</span> CookieContainer _coockieContainer = <span style="color: blue;">new</span> CookieContainer();</pre>
<pre>    <span style="color: blue;">private</span> <span style="color: blue;">void</span> Authenticate(<span style="color: blue;">string</span> userName,<span style="color: blue;">string</span> password)
    {
      var authService = <span style="color: blue;">new</span> AuthenticationService.AuthenticationServiceClient();
      <strong>authService.CookieContainer = _coockieContainer;</strong>
      authService.LoginCompleted += authService_LoginCompleted;
     <strong> authService.LoginAsync</strong>(userName,password,<span style="color: maroon;">""</span>,<span style="color: maroon;">true</span>);
    }</pre>
<p>If you make now a method service call, you have to set the same <strong>CookieContainer</strong>.</p>
<pre>    <span style="color: blue;">private</span> <span style="color: blue;">void</span> GetCompanyName()
    {
      var client = <span style="color: blue;">new</span> CompanyServiceClient();
      <strong>client.CookieContainer = _coockieContainer;</strong>
      client.GetCompanyNameCompleted += client_GetCompanyNameCompleted;
      client.GetCompanyNameAsync();
    }</pre>
<p><strong><em>Authentication without MembershipProvider</em></strong></p>
<p>If you are using your own authentication method you have to set the authentication cookie by yourself.</p>
<pre>   <span style="color: blue;">public</span> <span style="color: blue;">bool</span> Authenticate(<span style="color: blue;">string</span> userName, <span style="color: blue;">string</span> password)
   {
     <span style="color: blue;">if</span> (userName == <span style="color: maroon;">"lieberlieber"</span> &amp;&amp; password == <span style="color: maroon;">"ll%123"</span>)
     {
      System.Web.Security.<strong>FormsAuthentication.SetAuthCookie</strong>(userName, <span style="color: maroon;">false</span>);
      <span style="color: blue;">return</span> <span style="color: maroon;">true</span>;
     }
     <span style="color: blue;">return</span> <span style="color: maroon;">false</span>;
    }</pre>
<p><strong>One important thing to remember</strong></p>
<p>If you are using Basic Authentication the username and password are sent in plaintext. That means you should definitely use SSL.</p>
<p>Here you can find a <a href="http://blog.lieberlieber.com/wp-content/uploads/WebAuth.zip">running solution</a>.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications&amp;bodytext=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;t=WP7%20authentication%20via%20asp.net%20applications" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications&amp;notes=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications&amp;annotation=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;bm_description=WP7%20authentication%20via%20asp.net%20applications&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;bm_description=WP7%20authentication%20via%20asp.net%20applications&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=WP7%20authentication%20via%20asp.net%20applications&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;desc=WP7%20authentication%20via%20asp.net%20applications" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F%20WP7%20authentication%20via%20asp.net%20applications" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;t=WP7%20authentication%20via%20asp.net%20applications&amp;s=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=WP7%20authentication%20via%20asp.net%20applications%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;title=WP7%20authentication%20via%20asp.net%20applications" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;t=WP7%20authentication%20via%20asp.net%20applications&opener=bm&amp;ei=UTF-8&amp;d=During%20a%20recent%20consulting%2C%20I%20helped%20a%20client%20to%20resolve%20his%20authentication%20issues%20with%20his%20existing%20Web%20application%20and%20Windows%20Phone%20application.%0D%0A%0D%0A%0D%0A%0D%0AUsing%20the%20existing%20MembershipProvider%0D%0AIf%20you%20have%20already%20an%20existing%20Web%20application%20and%20you%20" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2011%2F03%2F25%2Fwp7-authentication-via-asp-net-applications%2F&amp;exttitle=WP7%20authentication%20via%20asp.net%20applications" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2011/03/25/wp7-authentication-via-asp-net-applications/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Asp.Net: Could not load file or assembly &#8216;name&#8217; or one of its dependencies</title>
		<link>http://blog.lieberlieber.com/2010/01/13/asp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies/</link>
		<comments>http://blog.lieberlieber.com/2010/01/13/asp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 10:22:43 +0000</pubDate>
		<dc:creator>Daniel Siegl</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>
		<category><![CDATA[x86]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/2010/01/13/asp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies/</guid>
		<description><![CDATA[Today I ran into Issues when I wanted to Deploy an old Application on our latest Webserver! Switching the Application Pool to enable 32 Bit Solved the Problem. See this excellent Blog Post “Could not load file or assembly &#8216;name&#8217; or one of its dependencies”. In my Case the trouble was caused by an Third [...]]]></description>
			<content:encoded><![CDATA[<p>Today I ran into Issues when I wanted to Deploy an old Application on our latest Webserver! Switching the Application Pool to enable 32 Bit Solved the Problem.</p>
<p><a href="http://blog.lieberlieber.com/wp-content/uploads/2010/01/image.png" rel="lightbox[1534]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blog.lieberlieber.com/wp-content/uploads/2010/01/image_thumb.png" width="244" height="90" /></a> </p>
<p>See this excellent Blog Post “<a href="http://blog.crowe.co.nz/archive/2007/11/05/Could-not-load-file-or-assembly-name-or-one-of.aspx">Could not load file or assembly &#8216;name&#8217; or one of its dependencies</a>”. </p>
<p>In my Case the trouble was caused by an Third Party .dll compiled for x86, that was referenced by my webapplication.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;bodytext=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;t=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;notes=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;annotation=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;bm_description=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;bm_description=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;desc=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F%20Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;t=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&amp;s=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;title=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;t=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies&opener=bm&amp;ei=UTF-8&amp;d=Today%20I%20ran%20into%20Issues%20when%20I%20wanted%20to%20Deploy%20an%20old%20Application%20on%20our%20latest%20Webserver%21%20Switching%20the%20Application%20Pool%20to%20enable%2032%20Bit%20Solved%20the%20Problem.%20%20%20%20%20See%20this%20excellent%20Blog%20Post%20%E2%80%9CCould%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20d" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2010%2F01%2F13%2Fasp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies%2F&amp;exttitle=Asp.Net%3A%20Could%20not%20load%20file%20or%20assembly%20%27name%27%20or%20one%20of%20its%20dependencies" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2010/01/13/asp-net-could-not-load-file-or-assembly-name-or-one-of-its-dependencies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Verzögerung beim Starten von .Net Applikationen</title>
		<link>http://blog.lieberlieber.com/2009/09/15/verzogerung-beim-starten-von-net-applikationen/</link>
		<comments>http://blog.lieberlieber.com/2009/09/15/verzogerung-beim-starten-von-net-applikationen/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 12:24:13 +0000</pubDate>
		<dc:creator>John Fall</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<category><![CDATA[.net]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=1208</guid>
		<description><![CDATA[Ich hatte bei einem Kunden das Problem, dass eine Windows .Net Applikation bei jeden Start ca. 30 Sekunden benötigt hat, bis die Applikation geladen war. Eine ebenso dort installierte ASP.Net Applikation benötigte ca. 4 Minuten (!), bis dass der Browser die erste Seite geöffnet hatte (danach gings normal weiter, solange die Web-App nicht gestoppt wurde&#8230;). [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hatte bei einem Kunden das Problem, dass eine Windows .Net Applikation bei jeden Start ca. 30 Sekunden benötigt hat, bis die Applikation geladen war.<br />
Eine ebenso dort installierte ASP.Net Applikation benötigte ca. 4 Minuten (!), bis dass der Browser die erste Seite geöffnet hatte (danach gings normal weiter, solange die Web-App nicht gestoppt wurde&#8230;).</p>
<p>Man konnte mit dem Prozess-Explorer förmlich sehen, wie eine dll nach der anderen mit grossen Zeitabstand in den Speicher geladen wurde&#8230; Irgend etwas schien die Ladezeit stark zu verzögern (Virenscanner?).</p>
<p>Erst nach langer Zeit und Suche bin ich im Google endlich fündig geworden &#8211; folgenden Eintrag muss man in einer Config-Datei (app od. web.config) machen (<span style="color: #ff0000;">rot hervorgehoben</span>):</p>
<pre style="PADDING-LEFT: 30px">&lt;?xml version="1.0" encoding="utf-8" ?&gt;
&lt;configuration&gt;
  <span style="color: #ff0000;">&lt;runtime&gt;
     &lt;generatePublisherEvidence enabled="false"/&gt;
  &lt;/runtime&gt;
</span>&lt;/configuration&gt;</pre>
<p>Mit dieser Änderung geht das Starten plötzlich wieder im &#8220;normalen&#8221; Tempo&#8230;</p>
<p>Hier die Begründung von Microsoft (<a href="http://msdn.microsoft.com/de-de/library/bb629393.aspx">http://msdn.microsoft.com/de-de/library/bb629393.aspx</a>):</p>
<blockquote><p><em>Die Common Language Runtime (CLR) versucht, die Authenticode-Signatur zur Ladezeit zu überprüfen, damit der <span><a id="ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl00" onclick="javascript:Track('ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_contenthere|ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl00',this);" href="http://msdn.microsoft.com/de-de/library/system.security.policy.publisher.aspx">Publisher</a></span>-Beweis für die Assembly erstellt wird. <strong>Standardmäßig benötigen die meisten Anwendungen jedoch keinen <span><a id="ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl01" onclick="javascript:Track('ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_contenthere|ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl01',this);" href="http://msdn.microsoft.com/de-de/library/system.security.policy.publisher.aspx">Publisher</a></span>-Beweis</strong>. Die Standard-CAS-Richtlinie ist nicht auf <span><a id="ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl02" onclick="javascript:Track('ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_contenthere|ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl02',this);" href="http://msdn.microsoft.com/de-de/library/system.security.policy.publishermembershipcondition.aspx">PublisherMembershipCondition</a></span> angewiesen. <strong>Vermeiden Sie die unnötigen Startkosten</strong>, <strong>die mit der Prüfung der Herausgebersignatur zusammenhänge</strong>n, es sei denn, die Anwendung wird auf einem Computer mit benutzerdefinierter CAS-Richtlinie ausgeführt oder muss den Anforderungen von <span><a id="ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl03" onclick="javascript:Track('ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_contenthere|ctl00_MTContentSelector1_mainContentContainer_ctl23_ctl00_ctl03',this);" href="http://msdn.microsoft.com/de-de/library/system.security.permissions.publisheridentitypermission.aspx">PublisherIdentityPermission</a></span> in einer nur teilweise vertrauenswürdigen Umgebung genügen. (Forderungen nach Identitätsberechtigungen haben in einer vollständig vertrauenswürdigen Umgebung immer Erfolg.)</em></p></blockquote>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;bodytext=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;t=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;notes=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;annotation=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;bm_description=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;bm_description=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;desc=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F%20Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;t=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&amp;s=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;title=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;t=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen&opener=bm&amp;ei=UTF-8&amp;d=Ich%20hatte%20bei%20einem%20Kunden%20das%20Problem%2C%20dass%20eine%20Windows%20.Net%20Applikation%20bei%20jeden%20Start%20ca.%2030%20Sekunden%20ben%C3%B6tigt%20hat%2C%20bis%20die%20Applikation%20geladen%20war.%0D%0AEine%20ebenso%20dort%20installierte%20ASP.Net%20Applikation%20ben%C3%B6tigte%20ca.%204%20Minuten%20%28%21%29%2C%20bis%20dass%20der%20B" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F09%2F15%2Fverzogerung-beim-starten-von-net-applikationen%2F&amp;exttitle=Verz%C3%B6gerung%20beim%20Starten%20von%20.Net%20Applikationen" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2009/09/15/verzogerung-beim-starten-von-net-applikationen/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DotNetNuke 5.0 released</title>
		<link>http://blog.lieberlieber.com/2009/01/02/dotnetnuke-50-released/</link>
		<comments>http://blog.lieberlieber.com/2009/01/02/dotnetnuke-50-released/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 15:59:20 +0000</pubDate>
		<dc:creator>Peter Lieber</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=857</guid>
		<description><![CDATA[Interessiert mich schon lange: DotNetNuke 5.0 wurde gerade veröffentlicht. DotNetNuke ist ein sehr leistungsfähiges Open-Source-Framework zum Entwickeln von Web-Anwendungen auf Basis von ASP.NET. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Interessiert mich schon lange: <a href="http://www.dotnetnuke.com">DotNetNuke 5.0</a> wurde gerade veröffentlicht.<br />
DotNetNuke ist ein sehr leistungsfähiges Open-Source-Framework zum Entwickeln von Web-Anwendungen auf Basis von ASP.NET.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released&amp;bodytext=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;t=DotNetNuke%205.0%20released" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released&amp;notes=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released&amp;annotation=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;bm_description=DotNetNuke%205.0%20released&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;bm_description=DotNetNuke%205.0%20released&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=DotNetNuke%205.0%20released&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;desc=DotNetNuke%205.0%20released" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F%20DotNetNuke%205.0%20released" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;t=DotNetNuke%205.0%20released&amp;s=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=DotNetNuke%205.0%20released%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;title=DotNetNuke%205.0%20released" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;t=DotNetNuke%205.0%20released&opener=bm&amp;ei=UTF-8&amp;d=Interessiert%20mich%20schon%20lange%3A%20DotNetNuke%205.0%20wurde%20gerade%20ver%C3%B6ffentlicht.%0D%0ADotNetNuke%20ist%20ein%20sehr%20leistungsf%C3%A4higes%20Open-Source-Framework%20zum%20Entwickeln%20von%20Web-Anwendungen%20auf%20Basis%20von%20ASP.NET.%0D%0A" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2009%2F01%2F02%2Fdotnetnuke-50-released%2F&amp;exttitle=DotNetNuke%205.0%20released" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2009/01/02/dotnetnuke-50-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2 Tolle MVC Beispiele &#8211; Oxite und S#arp Architecture</title>
		<link>http://blog.lieberlieber.com/2008/12/16/2-tolle-mvc-beispiele-oxite-und-sarp-architecture/</link>
		<comments>http://blog.lieberlieber.com/2008/12/16/2-tolle-mvc-beispiele-oxite-und-sarp-architecture/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 08:06:00 +0000</pubDate>
		<dc:creator>Simon Gorski</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[NHibernate]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=774</guid>
		<description><![CDATA[Ich habe zwei wirklich tollte MVC Beispiele gefunden. Zum einen handelt es sich dabei um Oxite - einer freien und open-source ASP.NET MVC Blog Engine / Contentent Management System. Beim zweiten handelt es sich dabei um S#arp Architecture (&#8220;Sharp Architecture&#8221;), welches ein solides &#8220;architectural foundation for rapidly building maintainablweb applications leveraging the ASP.NET MVC framework with NHibernate&#8221; handelt. [...]]]></description>
			<content:encoded><![CDATA[<p>Ich habe zwei wirklich tollte MVC Beispiele gefunden. Zum einen handelt es sich dabei um <a href="http://www.codeplex.com/oxite/Release/ProjectReleases.aspx?ReleaseId=20210" target="_blank">Oxite</a> - einer freien und open-source ASP.NET MVC Blog Engine / Contentent Management System. Beim zweiten handelt es sich dabei um <a href="http://code.google.com/p/sharp-architecture/" target="_blank">S#arp Architecture</a> (&#8220;Sharp Architecture&#8221;), welches ein solides &#8220;architectural foundation for rapidly building maintainablweb applications leveraging the ASP.NET MVC framework with NHibernate&#8221; handelt.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;bodytext=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;t=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;notes=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;annotation=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;bm_description=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;bm_description=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;desc=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F%202%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;t=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&amp;s=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;title=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;t=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture&opener=bm&amp;ei=UTF-8&amp;d=Ich%20habe%20zwei%20wirklich%20tollte%20MVC%20Beispiele%20gefunden.%20Zum%20einen%20handelt%20es%20sich%20dabei%20um%20Oxite%C2%A0-%20einer%20freien%20und%20open-source%C2%A0ASP.NET%20MVC%20Blog%20Engine%20%2F%20Contentent%20Management%20System.%20Beim%20zweiten%20handelt%20es%20sich%20dabei%C2%A0um%20S%23arp%20Architecture%20%28%22Sharp%20" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F16%2F2-tolle-mvc-beispiele-oxite-und-sarp-architecture%2F&amp;exttitle=2%20Tolle%20MVC%20Beispiele%20-%20Oxite%20und%20S%23arp%20Architecture" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/12/16/2-tolle-mvc-beispiele-oxite-und-sarp-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gratis Controls für Winforms und ASP.NET</title>
		<link>http://blog.lieberlieber.com/2008/12/15/gratis-controls-fur-winforms-und-aspnet/</link>
		<comments>http://blog.lieberlieber.com/2008/12/15/gratis-controls-fur-winforms-und-aspnet/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 10:21:03 +0000</pubDate>
		<dc:creator>Alexander Schölzhorn</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Controls]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<category><![CDATA[Winforms]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=758</guid>
		<description><![CDATA[Devexpress bietet über 60 Controls für Winforms und ASP.NET gratis zum download an. Da ist sicher für jeden was dabei. Ein sehr nützliches Control für mich ist das ComboBoxEdit Control. Es ist lediglich eine Registrierung nötig. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p><a title="Developer Express" href="http://www.devexpress.com" target="_blank">Devexpress</a> bietet über 60 Controls für Winforms und ASP.NET gratis zum <a title="Download free Controls" href="http://www.devexpress.com/Products/Free/WebRegistration60/" target="_blank">download</a> an. Da ist sicher für jeden was dabei. Ein sehr nützliches Control für mich ist das <a title="ComboBoxEdit Control" href="http://www.devexpress.com/Products/NET/Controls/WinForms/Editors/editors/ComboBoxEdit.xml" target="_blank">ComboBoxEdit Control</a>.<br />
Es ist lediglich eine Registrierung nötig.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;bodytext=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;t=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;notes=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;annotation=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;bm_description=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;bm_description=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;desc=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F%20Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;t=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&amp;s=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;title=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;t=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET&opener=bm&amp;ei=UTF-8&amp;d=Devexpress%20bietet%20%C3%BCber%2060%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET%20gratis%20zum%20download%20an.%20Da%20ist%20sicher%20f%C3%BCr%20jeden%20was%20dabei.%20Ein%20sehr%20n%C3%BCtzliches%20Control%20f%C3%BCr%20mich%20ist%20das%20ComboBoxEdit%20Control.%0D%0AEs%20ist%20lediglich%20eine%20Registrierung%20n%C3%B6tig." title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F15%2Fgratis-controls-fur-winforms-und-aspnet%2F&amp;exttitle=Gratis%20Controls%20f%C3%BCr%20Winforms%20und%20ASP.NET" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/12/15/gratis-controls-fur-winforms-und-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.net MVC</title>
		<link>http://blog.lieberlieber.com/2008/12/12/aspnet-mvc/</link>
		<comments>http://blog.lieberlieber.com/2008/12/12/aspnet-mvc/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 10:58:27 +0000</pubDate>
		<dc:creator>Simon Bitschnau</dc:creator>
				<category><![CDATA[.NET Framework]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Architecure]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[Patterns]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=745</guid>
		<description><![CDATA[Die MVC Pattern hat gerade durch Frameworks wie Ruby on Rails sehr stark an Popularität gewonnen. Mit ASP.NET MVC bietet nun auch Microsoft ein solches Framework an, welches zur Zeit als Beta Version auf der offiziellen Website verfügbar ist. Die UI Integration bei der deutschen VS Version scheint zur Zeit noch etwas verbugt zu sein. [...]]]></description>
			<content:encoded><![CDATA[<p>Die <a href="http://de.wikipedia.org/wiki/Model_View_Controller" target="_self">MVC Pattern</a> hat gerade durch Frameworks wie Ruby on Rails sehr stark an Popularität gewonnen. Mit ASP.NET MVC bietet nun auch Microsoft ein solches Framework an, welches zur Zeit als Beta Version auf der <a href="http://www.asp.net/mvc" target="_self">offiziellen Website</a> verfügbar ist.</p>
<p>Die UI Integration bei der deutschen VS Version scheint zur Zeit noch etwas verbugt zu sein. Wer das ganze selber ausprobieren will, sollte also wenn möglich die englische Version installieren.</p>
<p>Für die MVC Views werden aspx Seiten genutzt. Diese Seiten nutzen im Gegensatz zu Webforms aber keinen form Tag mit dem runat=&#8221;server&#8221; Attribut. Dass befreit uns dann zwar von dem Viewstate, dafür sind aber auch keine Serversteuerelemente mehr nutzbar. Standardelemente wie Textboxen werden daher über HTML Helper Funktionen eingefügt.</p>
<p>Das Postbackmodell fällt somit weg und es liegt am Entwickler, sich die gesendeten Daten zu merken. ASP.net MVC bietet hier aber gute Unterstützung durch die Modelbinders, welche die Formdaten automatisch an komplexe Models binden kann.</p>
<p>Im Endeffekt handelt es sich aber auch bei MVC um eine ASP.net Anwendung. Entsprechenden kann man diese auch mit Webforms vermischt werden, was recht gut in <a href="http://www.hanselman.com/blog/PlugInHybridsASPNETWebFormsAndASPMVCAndASPNETDynamicDataSideBySide.aspx" target="_self">diesem Artikel</a> erklärt wird.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC&amp;bodytext=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;t=ASP.net%20MVC" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC&amp;notes=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC&amp;annotation=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;bm_description=ASP.net%20MVC&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;bm_description=ASP.net%20MVC&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=ASP.net%20MVC&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;desc=ASP.net%20MVC" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F%20ASP.net%20MVC" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;t=ASP.net%20MVC&amp;s=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=ASP.net%20MVC%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;title=ASP.net%20MVC" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;t=ASP.net%20MVC&opener=bm&amp;ei=UTF-8&amp;d=Die%20MVC%20Pattern%20hat%20gerade%20durch%20Frameworks%20wie%20Ruby%20on%20Rails%20sehr%20stark%20an%20Popularit%C3%A4t%20gewonnen.%20Mit%20ASP.NET%20MVC%20bietet%20nun%20auch%20Microsoft%20ein%20solches%20Framework%20an%2C%20welches%20zur%20Zeit%20als%20Beta%20Version%20auf%20der%20offiziellen%20Website%20verf%C3%BCgbar%20ist.%0D%0A%0D%0ADi" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F12%2F12%2Faspnet-mvc%2F&amp;exttitle=ASP.net%20MVC" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/12/12/aspnet-mvc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Singleton Pattern für verteilte Anwendungen</title>
		<link>http://blog.lieberlieber.com/2008/11/11/singleton-pattern-fur-verteilte-anwendungen/</link>
		<comments>http://blog.lieberlieber.com/2008/11/11/singleton-pattern-fur-verteilte-anwendungen/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 12:00:51 +0000</pubDate>
		<dc:creator>Simon Gorski</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Programmierung Allgemein]]></category>
		<category><![CDATA[Singleton]]></category>
		<category><![CDATA[Verteilte Anwendungen]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=333</guid>
		<description><![CDATA[Das Singleton Pattern gehört sicherlich zu den meist verwendeten Patterns. Leider kommt es aber doch noch öfters vor, dass diese für verteilte Anwendungen und Web Applikationen falsch implementiert werden.  public sealed class Singleton { static Singleton instance = null; Singleton() { } public static Singleton Instance { get { if (instance == null) { instance [...]]]></description>
			<content:encoded><![CDATA[<p>Das Singleton Pattern gehört sicherlich zu den meist verwendeten Patterns. Leider kommt es aber doch noch öfters vor, dass diese für verteilte Anwendungen und Web Applikationen falsch implementiert werden. </p>
<p><!--<br />
.csharpcode, .csharpcode pre<br />
{<br />
font-size: small;<br />
color: black;<br />
font-family: Consolas, "Courier New", Courier, Monospace;<br />
background-color: #ffffff;<br />
/*white-space: pre;*/<br />
}</p>
<p>.csharpcode pre { margin: 0em; }</p>
<p>.csharpcode .rem { color: #008000; }</p>
<p>.csharpcode .kwrd { color: #0000ff; }</p>
<p>.csharpcode .str { color: #006080; }</p>
<p>.csharpcode .op { color: #0000c0; }</p>
<p>.csharpcode .preproc { color: #cc6633; }</p>
<p>.csharpcode .asp { background-color: #ffff00; }</p>
<p>.csharpcode .html { color: #800000; }</p>
<p>.csharpcode .attr { color: #ff0000; }</p>
<p>.csharpcode .alt<br />
{<br />
background-color: #f4f4f4;<br />
width: 100%;<br />
margin: 0em;<br />
}</p>
<p>.csharpcode .lnum { color: #606060; }<br />
--></p>
<pre class="csharpcode"><span class="kwrd">public</span> <span class="kwrd">sealed</span> <span class="kwrd">class</span> Singleton
{
    <span class="kwrd">static</span> Singleton instance = <span class="kwrd">null</span>;

    Singleton()
    {
    }

    <span class="kwrd">public</span> <span class="kwrd">static</span> Singleton Instance
    {
        get
        {
            <span class="kwrd">if</span> (instance == <span class="kwrd">null</span>)
            {
                instance = <span class="kwrd">new</span> Singleton();
            }
            <span class="kwrd">return</span> instance;
        }
    }
}</pre>
<p>Wie es richtig gehört kann man auf der <a href="http://msdn.microsoft.com/en-us/library/ms998558.aspx" target="_blank">Microsoft Website finden</a>. Ebenfalls eine tolle Erklärung und passende Alternativimplementierungen ohne locks kann man hier <a href="http://www.yoda.arachsys.com/csharp/singleton.html" target="_blank">finden</a>.<!--<br />
.csharpcode, .csharpcode pre<br />
{<br />
font-size: small;<br />
color: black;<br />
font-family: Consolas, "Courier New", Courier, Monospace;<br />
background-color: #ffffff;<br />
/*white-space: pre;*/<br />
}</p>
<p>.csharpcode pre { margin: 0em; }</p>
<p>.csharpcode .rem { color: #008000; }</p>
<p>.csharpcode .kwrd { color: #0000ff; }</p>
<p>.csharpcode .str { color: #006080; }</p>
<p>.csharpcode .op { color: #0000c0; }</p>
<p>.csharpcode .preproc { color: #cc6633; }</p>
<p>.csharpcode .asp { background-color: #ffff00; }</p>
<p>.csharpcode .html { color: #800000; }</p>
<p>.csharpcode .attr { color: #ff0000; }</p>
<p>.csharpcode .alt<br />
{<br />
background-color: #f4f4f4;<br />
width: 100%;<br />
margin: 0em;<br />
}</p>
<p>.csharpcode .lnum { color: #606060; }<br />
--></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;bodytext=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;t=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;notes=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;annotation=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;bm_description=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;bm_description=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;desc=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F%20Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;t=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&amp;s=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;title=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;t=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen&opener=bm&amp;ei=UTF-8&amp;d=Das%20Singleton%20Pattern%20geh%C3%B6rt%20sicherlich%20zu%20den%20meist%20verwendeten%20Patterns.%20Leider%20kommt%20es%20aber%20doch%20noch%20%C3%B6fters%20vor%2C%20dass%20diese%20f%C3%BCr%20verteilte%20Anwendungen%20und%20Web%20Applikationen%20falsch%20implementiert%20werden.%C2%A0%0D%0A%0D%0A%0D%0Apublic%20sealed%20class%20Singleton%0D%0A%7B%0D%0A" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F11%2Fsingleton-pattern-fur-verteilte-anwendungen%2F&amp;exttitle=Singleton%20Pattern%20f%C3%BCr%20verteilte%20Anwendungen" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/11/11/singleton-pattern-fur-verteilte-anwendungen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 &#8211; Übersicht über Datums- und Zeitdatentypen</title>
		<link>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/</link>
		<comments>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 20:35:12 +0000</pubDate>
		<dc:creator>Peter Lieber</dc:creator>
				<category><![CDATA[Microsoft Server]]></category>
		<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Datenbanken]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Microsoft SQL Server 2008]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=315</guid>
		<description><![CDATA[Es scheint sich bis MS herumgesprochen zu haben, dass es einen Datumstyp für &#8220;weltweit&#8221; gibt &#8211; gemäß ISO-8601 Standard. Das wird mobil-data freuen, da sie derzeit dafür ziemlich tricksen müssen. Server in Norwegen und mobile Geräte z.B. in Australien in einer anderen Zeitzone&#8230; Type Inhalt Größe Besonderheiten Beispiel Date nur Datum 3 Byte Spanne: 01.01.0001 [...]]]></description>
			<content:encoded><![CDATA[<p>Es scheint sich bis MS herumgesprochen zu haben, dass es einen Datumstyp für &#8220;weltweit&#8221; gibt &#8211; gemäß ISO-8601 Standard.<br />
Das wird <a href="http://www.mobil-data.at">mobil-data</a> freuen, da sie derzeit dafür ziemlich tricksen müssen. Server in Norwegen und mobile Geräte z.B. in Australien in einer anderen Zeitzone&#8230;</p>
<table border="1">
<tbody>
<tr>
<td>Type</td>
<td>Inhalt</td>
<td>Größe</td>
<td>Besonderheiten</td>
<td>Beispiel</td>
</tr>
<tr>
<td>Date</td>
<td>nur Datum</td>
<td>3 Byte</td>
<td>Spanne: 01.01.0001 bis 31.12.9999</td>
<td>10.06.1973</td>
</tr>
<tr>
<td>Time(n)</td>
<td>nur Zeit</td>
<td>3-5 Byte</td>
<td>bis zu 100 ns genau</td>
<td>11:32:12.222123</td>
</tr>
<tr>
<td>Datetimeoffset(n)</td>
<td>Datum&amp;Uhrzeit inkl. Zeitzone (ISO-8601 Standard</td>
<td>8-10 Byte</td>
<td>Zeitzone, Genauigkeit bis 100 ns</td>
<td>10.06.1973 00:27:00.212412+01:00</td>
</tr>
<tr>
<td>DateTime2(n)</td>
<td>Komination aus Datum&amp;Uhrzeit</td>
<td>6-8 Byte</td>
<td>Spanne wie Datum &#8211; bis 100 ns Genau</td>
<td>10.06.1973 00:27:00.212412</td>
</tr>
</tbody>
</table>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;bodytext=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;notes=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;annotation=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;bm_description=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;bm_description=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;desc=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F%20SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&amp;s=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;title=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;t=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen&opener=bm&amp;ei=UTF-8&amp;d=Es%20scheint%20sich%20bis%20MS%20herumgesprochen%20zu%20haben%2C%20dass%20es%20einen%20Datumstyp%20f%C3%BCr%20%22weltweit%22%20gibt%20-%20gem%C3%A4%C3%9F%20ISO-8601%20Standard.%0D%0ADas%20wird%20mobil-data%20freuen%2C%20da%20sie%20derzeit%20daf%C3%BCr%20ziemlich%20tricksen%20m%C3%BCssen.%20Server%20in%20Norwegen%20und%20mobile%20Ger%C3%A4te%20z.B.%20in%20Aus" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F11%2F10%2Fsql-server-2008-ubersicht-uber-datums-und-zeitdatentypen%2F&amp;exttitle=SQL%20Server%202008%20-%20%C3%9Cbersicht%20%C3%BCber%20Datums-%20und%20Zeitdatentypen" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/11/10/sql-server-2008-ubersicht-uber-datums-und-zeitdatentypen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gratis ASP.NET und Windows Forms Chart Controls für Visual Studio 2008</title>
		<link>http://blog.lieberlieber.com/2008/10/28/gratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008/</link>
		<comments>http://blog.lieberlieber.com/2008/10/28/gratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 16:00:48 +0000</pubDate>
		<dc:creator>Simon Gorski</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Windows Forms]]></category>
		<category><![CDATA[Chart Controls]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=151</guid>
		<description><![CDATA[Das SQL Server Reporting Services Team hat standalone ASP.NET und Windows Forms Chart Controls für das .NET Framework 3.5 und Visual Studio 2008 herausgebracht. Die ASP.NET und Windows Forms Chart Controls für .NET Framework 3.5 können hier herunter geladen werden. Das Microsoft Chart Controls Add-On für Microsoft Visual Studio 2008 gibts hier. Die Dokumentation und API [...]]]></description>
			<content:encoded><![CDATA[<p>Das <span>SQL Server Reporting Services Team hat standalone ASP.NET und Windows Forms Chart Controls für das .NET Framework 3.5 und Visual Studio 2008 herausgebracht.</span></p>
<ul>
<li><span>Die ASP.NET und Windows Forms Chart Controls für .NET Framework 3.5 können <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=130F7986-BF49-4FE5-9CA8-910AE6EA442C&amp;displaylang=en" target="_blank">hier </a>herunter geladen werden.<br />
</span></li>
<li><span>Das Microsoft Chart Controls Add-On für Microsoft Visual Studio 2008 gibts <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1D69CE13-E1E5-4315-825C-F14D33A303E9&amp;displaylang=en" target="_blank">hier</a>.<br />
</span></li>
<li><span>Die Dokumentation und API für die Microsoft Chart Controls könnt ihr <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=EE8F6F35-B087-4324-9DBA-6DD5E844FD9F&amp;displaylang=en" target="_blank">hier </a>finden.</span></li>
</ul>
<p><span>Ein paar <a href="http://code.msdn.microsoft.com/mschart" target="_blank">Beispiele</a> zu den Chart Controls gibs ebenso, sowie das <a href="http://social.msdn.microsoft.com/Forums/en-US/MSWinWebChart/threads" target="_blank">Forum</a> für offene Fragen.</span></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;bodytext=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;t=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;notes=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;annotation=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;bm_description=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;bm_description=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;desc=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F%20Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;t=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&amp;s=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;title=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;t=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008&opener=bm&amp;ei=UTF-8&amp;d=Das%20SQL%20Server%20Reporting%20Services%20Team%20hat%C2%A0standalone%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20das%20.NET%20Framework%203.5%20und%20Visual%20Studio%202008%20herausgebracht.%0D%0A%0D%0A%09Die%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20.NET%20Framework%203.5%20k%C3%B6nnen%20hier%20h" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F28%2Fgratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008%2F&amp;exttitle=Gratis%20ASP.NET%20und%20Windows%20Forms%20Chart%20Controls%20f%C3%BCr%20Visual%20Studio%202008" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/10/28/gratis-aspnet-und-windows-forms-chart-controls-fur-visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft ASP.NET MVC Beta</title>
		<link>http://blog.lieberlieber.com/2008/10/23/microsoft-aspnet-mvc-beta/</link>
		<comments>http://blog.lieberlieber.com/2008/10/23/microsoft-aspnet-mvc-beta/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 04:15:11 +0000</pubDate>
		<dc:creator>Simon Gorski</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Model View Controller]]></category>
		<category><![CDATA[MVC]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=35</guid>
		<description><![CDATA[Vor gut einer Woche am 16. Oktober 2008 wurde Microsoft ASP.NET MVC Beta released. Genauere Informationen über ASP.NET MVC Beta findet man auf ScottGu&#8217;s Blog. Dort befinden sich auch weitere Links zum Thema ASP.NET MVC (Model View Controller). Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Vor gut einer Woche am 16. Oktober 2008 wurde <a title="Microsoft ASP.NET MVC Beta" href="http://www.microsoft.com/downloads/details.aspx?familyid=a24d1e00-cd35-4f66-baa0-2362bdde0766&amp;displaylang=en&amp;tm" target="_blank">Microsoft ASP.NET MVC Beta</a> released. Genauere Informationen über ASP.NET MVC Beta findet man auf <a href="http://weblogs.asp.net/scottgu/archive/2008/10/16/asp-net-mvc-beta-released.aspx" target="_blank">ScottGu&#8217;s Blog</a>. Dort befinden sich auch weitere Links zum Thema ASP.NET MVC (Model View Controller).</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta&amp;bodytext=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;t=Microsoft%20ASP.NET%20MVC%20Beta" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta&amp;notes=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta&amp;annotation=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;bm_description=Microsoft%20ASP.NET%20MVC%20Beta&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;bm_description=Microsoft%20ASP.NET%20MVC%20Beta&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Microsoft%20ASP.NET%20MVC%20Beta&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;desc=Microsoft%20ASP.NET%20MVC%20Beta" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F%20Microsoft%20ASP.NET%20MVC%20Beta" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;t=Microsoft%20ASP.NET%20MVC%20Beta&amp;s=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Microsoft%20ASP.NET%20MVC%20Beta%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;title=Microsoft%20ASP.NET%20MVC%20Beta" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;t=Microsoft%20ASP.NET%20MVC%20Beta&opener=bm&amp;ei=UTF-8&amp;d=Vor%20gut%20einer%20Woche%20am%2016.%20Oktober%202008%20wurde%20Microsoft%20ASP.NET%20MVC%20Beta%C2%A0released.%20Genauere%20Informationen%20%C3%BCber%20ASP.NET%20MVC%20Beta%20findet%20man%C2%A0auf%20ScottGu%27s%20Blog.%20Dort%20befinden%20sich%20auch%20weitere%20Links%20zum%20Thema%20ASP.NET%20MVC%20%28Model%20View%20Controller%29." title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F23%2Fmicrosoft-aspnet-mvc-beta%2F&amp;exttitle=Microsoft%20ASP.NET%20MVC%20Beta" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/10/23/microsoft-aspnet-mvc-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft SQL Server Compact 3.5 und Asp.net</title>
		<link>http://blog.lieberlieber.com/2008/10/22/microsoft-sql-server-compact-35-und-aspnet/</link>
		<comments>http://blog.lieberlieber.com/2008/10/22/microsoft-sql-server-compact-35-und-aspnet/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 20:38:04 +0000</pubDate>
		<dc:creator>Daniel Siegl</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Compact Framework]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[SQL Server Compact]]></category>

		<guid isPermaLink="false">http://blog.lieberlieber.com/?p=21</guid>
		<description><![CDATA[Es klingt  durch geknallt – ist es wahrscheinlich auch – man weiß nicht ganz ob es lizenzrechtlich ok ist. Aber mich hat einfach gereizt ob es geht. Und ja es geht! Der einzige logische Anwendungsfall der mir einfällt wäre eine durch xcopy installierbare Webanwendung zu haben die bei einem externen Hoster ohne SQL Server 2005/2008 [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Es klingt  durch geknallt – ist es wahrscheinlich auch – man weiß nicht ganz ob es lizenzrechtlich ok ist. Aber mich hat einfach gereizt ob es geht. Und ja es geht!</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Der einzige logische Anwendungsfall der mir einfällt wäre eine durch xcopy installierbare Webanwendung zu haben die bei einem externen Hoster ohne SQL Server 2005/2008 läuft.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">SQL Compact mit xcopy zu deployen ist aber etwas das auch nicht ganz trivial ist – das werde ich mir ein andermal anschauen.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Einfach eine .sdf Datei ins Webprojekt.<span style="mso-spacerun: yes;">  </span>Dann eine GridView über den Wizard verbinden.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Und dann geht’s nicht – man bekommt folgende Meldung:</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt; line-height: normal; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-outline-level: 2;"><em><span style="font-size: 14pt; color: #800000; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE-AT; mso-ansi-language: EN-US;">SQL Server Compact is not intended for ASP.NET development.</span></em><span style="font-size: 14pt; color: #800000; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman'; mso-bidi-font-family: 'Times New Roman'; mso-fareast-language: DE-AT; mso-ansi-language: EN-US;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Ok eigentlich logisch. – Aber dann habe ich zu suchen begonnen und bin auf folgendes gekommen:</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Man braucht eine Global.asax in der es eine Zeile geben muss damit der SQL Server Compact auch im IIS läuft.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; color: #0000ff; font-family: &quot;Courier New&quot;; mso-ansi-language: EN-US; mso-no-proof: yes;">void</span><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-ansi-language: EN-US; mso-no-proof: yes;"> Application_Start(<span style="color: #0000ff;">object</span> sender, <span style="color: #2b91af;">EventArgs</span> e) </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-ansi-language: EN-US; mso-no-proof: yes;">{<span style="mso-spacerun: yes;">        </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; line-height: normal; mso-layout-grid-align: none;"><span style="font-size: 10pt; font-family: &quot;Courier New&quot;; mso-ansi-language: EN-US; mso-no-proof: yes;"><span style="mso-spacerun: yes;">   </span><span style="color: #2b91af;">AppDomain</span>.CurrentDomain.SetData(<span style="color: #a31515;">&#8220;SQLServerCompactEditionUnderWebHosting&#8221;</span>, <span style="color: #0000ff;">true</span>);</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: 10pt; line-height: 115%; font-family: &quot;Courier New&quot;; mso-no-proof: yes;">}</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Achtung abhängig von der Version des SQL Ce habe ich unterschiedlich Versionen des keys gefunden, der von mir verwendete ist der richtige für SQL Compact 3.5. </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Dazu gibts einen guten Post in einem <a title="Blog" href="http://vidmar.net/weblog/archive/2007/04/19/SQL-Server-2005-Compact-Edition-and-ASP.NET.aspx">Blog</a>.</span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 10pt;"><span style="font-size: small; font-family: Calibri;">Dann kann man schon auf eine IIS deployen. Allerdings muss in der Web.Config noch der Pfad angepasst werden zur .sdf Datei.</span></p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F" title="Technorati"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;bodytext=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="Digg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;t=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Facebook"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;notes=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="del.icio.us"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Live"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;annotation=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="Google Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="DotNetKicks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="DZone"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="" title="TwitThis"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Blogosphere News"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a  target="_blank" href="http://blogplay.com" title="Blogplay"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/blogplay.png" title="Blogplay" alt="Blogplay" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;source=LieberLieber+Software+TeamBlog+was+uns+treibt+und+verfolgt%21&amp;summary=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="LinkedIn"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;bm_description=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;plugin=soc" title="MisterWong"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;bm_description=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;plugin=soc" title="MisterWong.DE"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong.DE" alt="MisterWong.DE" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reporter.nl.msn.com/?fn=contribute&amp;Title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;URL=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;cat_id=6&amp;tag_id=31&amp;Remark=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="MSN Reporter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/msnreporter.png" title="MSN Reporter" alt="MSN Reporter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;desc=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="MyShare"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://blog.lieberlieber.com/feed/" title="RSS"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="StumbleUpon"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F%20Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Suggest to Techmeme via Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;t=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&amp;s=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="Tumblr"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net%20-%20http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F" title="Twitter"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;title=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Webnews.de"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/webnews.png" title="Webnews.de" alt="Webnews.de" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;t=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net&opener=bm&amp;ei=UTF-8&amp;d=Es%20klingt%C2%A0%20durch%20geknallt%20%E2%80%93%20ist%20es%20wahrscheinlich%20auch%20%E2%80%93%20man%20wei%C3%9F%20nicht%20ganz%20ob%20es%20lizenzrechtlich%20ok%20ist.%20Aber%20mich%20hat%20einfach%20gereizt%20ob%20es%20geht.%20Und%20ja%20es%20geht%21%0D%0ADer%20einzige%20logische%20Anwendungsfall%20der%20mir%20einf%C3%A4llt%20w%C3%A4re%20eine%20durch%20xcopy%20i" title="Yahoo! Bookmarks"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://yigg.de/neu?exturl=http%3A%2F%2Fblog.lieberlieber.com%2F2008%2F10%2F22%2Fmicrosoft-sql-server-compact-35-und-aspnet%2F&amp;exttitle=Microsoft%20SQL%20Server%20Compact%203.5%20und%20Asp.net" title="Yigg"><img src="http://blog.lieberlieber.com/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.lieberlieber.com/2008/10/22/microsoft-sql-server-compact-35-und-aspnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

