<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Visual Studio Web Developer Tutorial Corner</title>
	<atom:link href="http://vswdtutorialcorner.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vswdtutorialcorner.wordpress.com</link>
	<description>Creating a vs webpage? Need some help?</description>
	<lastBuildDate>Thu, 11 Oct 2007 16:36:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='vswdtutorialcorner.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f5dce5588e95e3c0547f9651f58e652f?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Visual Studio Web Developer Tutorial Corner</title>
		<link>http://vswdtutorialcorner.wordpress.com</link>
	</image>
			<item>
		<title>Using Localization in the MasterPage and other pages (VB-sample) &#8211; Part 2</title>
		<link>http://vswdtutorialcorner.wordpress.com/2007/10/02/using-localization-in-the-masterpage-and-other-pages-vb-sample-part-2/</link>
		<comments>http://vswdtutorialcorner.wordpress.com/2007/10/02/using-localization-in-the-masterpage-and-other-pages-vb-sample-part-2/#comments</comments>
		<pubDate>Tue, 02 Oct 2007 22:44:05 +0000</pubDate>
		<dc:creator>BottOm</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[global.asax]]></category>
		<category><![CDATA[localization]]></category>
		<category><![CDATA[masterpage]]></category>
		<category><![CDATA[Session]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://vswdtutorialcorner.wordpress.com/2007/10/02/using-localization-in-the-masterpage-and-other-pages-vb-sample-part-2/</guid>
		<description><![CDATA[The following steps are pretty easy. In Part 1 I explained how to set up the MasterPage and other pages by creating a BasePage.vb file and using a cookie and sessionobject. Your site should now be ready to use localization.
Part 2 is about adding resourcefiles and using those resources on the different pages (including your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=8&subd=vswdtutorialcorner&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The following steps are pretty easy. In Part 1 I explained how to set up the MasterPage and other pages by creating a BasePage.vb file and using a cookie and sessionobject. Your site should now be ready to use localization.<br />
Part 2 is about adding resourcefiles and using those resources on the different pages (including your MasterPage).</p>
<p>Haven&#8217;t read <a href="http://vswdtutorialcorner.wordpress.com/2007/09/30/using-localization-in-the-masterpage-vb-sample/">Part 1</a>? Then you have missed something!</p>
<h4><strong> Step 1. Folders for your resources</strong></h4>
<p>In your solution, you can have 2 different resourcefolder: App_GlobalResources and App_LocalResources. You can add them by rightclicking the solutionfile and choosing &#8220;Add ASP.NET Folder&#8221;.<br />
<span id="more-8"></span><br />
The folder GlobalResources is used for resources available to the whole website. I use it for storing my sitemapresources (a detailed tutorial about this feature is on my to-do list).<br />
<font color="#ff9900"> Naming your global resource files:<br />
name.language.resx or<br />
name.language-culture.resx</font></p>
<p>LocalResources are used to store items used for a single page or control.<br />
<font color="#ff9900"> Naming your local resource files:<br />
pageOrControlName.extension.language.resx or<br />
pageOrControlName.extension.language-culture.resx</font></p>
<h4><strong> Step 2. Adding resourcefiles</strong></h4>
<p>Say you have 2 languages in your dropdownlist created in Part 1. English, which is the default language and French.<br />
Then create the following files for your MasterPage:<br />
<font color="#ff9900"> MasterPage.master.resx</font> (default)<br />
<font color="#ff9900"> MasterPage.master.fr.resx</font> (French)<br />
For the homepage:<br />
<font color="#ff9900"> Home.aspx.resx<br />
Home.aspx.fr.resx</font></p>
<p>Every resource in those resx-files has to have a Name and a Value.<br />
Place an asp-label named lblWelcome on your homepage (or MasterPage or other page, the principle is the same so I will only discuss it once).<br />
In the resx-file for the English page type <font color="#ff9900">lblWelcome.Text as Name and Welcome as Value</font>. For the French version typ: <font color="#ff9900">lblWelcome.Text and Bienvenue as Value</font>.</p>
<h4><strong> Step 3. Last step</strong></h4>
<p>Change in the aspx-file for your website (eg. Home.aspx) the text of your labelcontrol: from Text=&#8221;" to Text=&#8221;&lt;%$ Resources:lblWelcome.Text %&gt;&#8221;.<br />
It should look similar to this:</p>
<p><font color="#ff9900">&lt;asp:Label ID=&#8221;lblWelcome&#8221; runat=&#8221;server&#8221; Text=&#8221;&lt;%$ Resources:lblWelcome.Text %&gt;&#8221; /&gt;</font></p>
<h3><strong><strong><strong><strong>Code sample:<br />
</strong></strong></strong></strong></h3>
<p>Download the code sample for this tutorial <a href="http://www.onestroke-europe.com/Localization%20tutorial.rar" target="_blank">here</a>.<br />
Please report any bugs or problems, it hasn&#8217;t been tested on another computer.</p>
<h3><strong><strong>End note:</strong></strong></h3>
<p>You have (hopefully) succesfull completed the tutorial and are ready to use localization throughout your website!</p>
<p>If you have any remarks or suggestions, please feel free to comment this topic.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vswdtutorialcorner.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vswdtutorialcorner.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vswdtutorialcorner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vswdtutorialcorner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vswdtutorialcorner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vswdtutorialcorner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vswdtutorialcorner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vswdtutorialcorner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vswdtutorialcorner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vswdtutorialcorner.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vswdtutorialcorner.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vswdtutorialcorner.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=8&subd=vswdtutorialcorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vswdtutorialcorner.wordpress.com/2007/10/02/using-localization-in-the-masterpage-and-other-pages-vb-sample-part-2/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddd291b114513482ba5a2846c8cf372a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">BottOm</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Localization in the Masterpage (VB-sample) &#8211; Part 1</title>
		<link>http://vswdtutorialcorner.wordpress.com/2007/09/30/using-localization-in-the-masterpage-vb-sample/</link>
		<comments>http://vswdtutorialcorner.wordpress.com/2007/09/30/using-localization-in-the-masterpage-vb-sample/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 10:30:25 +0000</pubDate>
		<dc:creator>BottOm</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[global.asax]]></category>
		<category><![CDATA[localization]]></category>
		<category><![CDATA[masterpage]]></category>
		<category><![CDATA[Session]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://vswdtutorialcorner.wordpress.com/2007/09/30/using-localization-in-the-masterpage-vb-sample/</guid>
		<description><![CDATA[&#8211; This tutorial is based on several tutorials / workarounds found on the web. &#8211;
The Problem:
When using localization you must override the InitializeCulture() method of a page. As seen on the msdn-tutorial: How Do I: Create a Multi-Lingual Site with Localization? (Around the ninth minute).
Apparently you cannot override the InitalizeCulture() method in a MasterPage. Howcome? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=4&subd=vswdtutorialcorner&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#8211; This tutorial is based on several tutorials / workarounds found on the web. &#8211;</p>
<h3><strong>The Problem:</strong></h3>
<p>When using localization you must override the InitializeCulture() method of a page. As seen on the msdn-tutorial: <a href="http://download.microsoft.com/download/3/6/0/3604c3d2-0db9-4726-910d-b3b8f93a86e4/hilo_localization_final.wmv">How Do I: Create a Multi-Lingual Site with Localization?</a> (Around the ninth minute).</p>
<p>Apparently you cannot override the InitalizeCulture() method in a MasterPage. Howcome? It derives from UserControl instead of the common WebForms&#8217; System.Web.UI.Page and does not support the InitializeCulture() method.</p>
<h3><strong>The Solution:</strong></h3>
<p><span id="more-4"></span>I found my solution on <a href="http://www.codeproject.com/useritems/MasterPage_Localization.asp" target="_blank">www.codeproject.com </a>. But it was a C# example so I adapted a bit.</p>
<p><span>The published solution uses the <code>Session</code> object as storage for the currently selected culture. This will be initialized during <code>Session_Start</code> method that is part of the global.asax file.</span></p>
<p>If a culture change is requested by the user (through a dropdownlist for example), the <code>MasterPage</code> changes the stored culture in the <code>Session </code>object.</p>
<p>In a <code>BasePage </code>that inherits from <code>Page</code>, the method <code>InitializeCulture</code> is overriden and sets the appropriate culture information stored in the session object to the current thread. Therefore, every Web Form needs to derive from this <code>BasePage</code>.</p>
<h4> Step 1. Creating a base page</h4>
<p>Under the App_code folder create a new codefile and name it BasePage. This is my code:</p>
<p><font color="#ff9900">Imports Microsoft.VisualBasic<br />
Imports System.Threading<br />
Imports System.Globalization</font></p>
<p><font color="#ff9900">&#8221;&#8217; &lt;summary&gt;<br />
&#8221;&#8217; Custom base page used for all web forms.<br />
&#8221;&#8217; &lt;/summary&gt;<br />
Public Class BasePage<br />
Inherits System.Web.UI.Page<br />
Protected Overrides Sub InitializeCulture()</font></p>
<p><font color="#ff9900">    &#8216;Set the UICulture and the Culture with a value stored in a Session-object. I called mine &#8220;MyCulture&#8221;<br />
Thread.CurrentThread.CurrentUICulture = New CultureInfo(Session(&#8220;MyCulture&#8221;).ToString)<br />
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Session(&#8220;MyCulture&#8221;).ToString)<br />
End Sub<br />
End Class</font></p>
<h4> Step 2: Let all pages derive from the BasePage</h4>
<p>For every page where you want the localization to work, change Inherits System.Web.UI.Page to Inherits BasePage in the codefile (ex. YourPage.aspx.vb).</p>
<p>For example:</p>
<p><font color="#ff9900">Partial Class Your_Class<br />
Inherits BasePage</font></p>
<p><font color="#ff9900">End Class</font></p>
<p>Instead of:</p>
<p>Partial Class Your_Class<br />
Inherits System.Web.UI.Page</p>
<p>End Class</p>
<h4>  Step 3: Create a Global.asax file</h4>
<p>Create a file under the root-folder and name it: Global.asax<br />
Remove all the code and type: <font color="#ff9900">&lt;%@ Application CodeBehind=&#8221;Global.asax.vb&#8221; Inherits=&#8221;Global2&#8243; Language=&#8221;VB&#8221; %&gt;</font></p>
<p>Under the App_Code folder create a file and name it Global.asax.vb.<br />
Some remarks about the code:<br />
- Use Global2 as classname because Global is a reserved word.<br />
- Only the Session_Start method is necessary.<br />
- I use a cookie (otmData) to store the users&#8217; preference which is put in a Sessionvariable called MyCulture</p>
<p><font color="#ff9900">&#8216;Global.asax.vb codebehind file</font></p>
<p><font color="#ff9900">Imports System.Web<br />
Imports System.Web.SessionState<br />
Imports System.Threading<br />
Imports System.Globalization</font></p>
<p><font color="#ff9900">Public Class Global2<br />
Inherits System.Web.HttpApplication</font></p>
<p><font color="#ff9900">    Sub Session_Start(ByVal Sender As Object, ByVal E As EventArgs)</font></p>
<p><font color="#ff9900">        If Not Request.Cookies(&#8220;otmData&#8221;) Is Nothing Then<br />
&#8216;If a cookie exists, set the session-object with the data from the cookie.<br />
Session(&#8220;MyCulture&#8221;) = Server.HtmlEncode(Request.Cookies(&#8220;otmData&#8221;)(&#8220;languagePref&#8221;))<br />
Else<br />
&#8216;If the cookie doen&#8217;t exist (user visits the website for the first time) set the session-object to the default value, in this case English. And                 &#8216;create the cookie.<br />
Session(&#8220;MyCulture&#8221;) = &#8220;en&#8221;<br />
Dim aCookie As New HttpCookie(&#8220;otmData&#8221;)<br />
aCookie.Values(&#8220;languagePref&#8221;) = Session(&#8220;MyCulture&#8221;)<br />
aCookie.Expires = System.DateTime.Now.AddDays(21)<br />
Response.Cookies.Add(aCookie)<br />
End If<br />
End Sub<br />
End Class</font></p>
<h4>  Step 4: Dropdownlist on the masterpage</h4>
<p>In my masterpage I created a dropdownlist which is populated with data from a sql-database. You can of course add items to the ddl manualy.<br />
Make sure that the AutoPostBack-value is set to True.<br />
<font color="#ff9900"> &lt;asp:DropDownList ID=&#8221;ddlLanguage&#8221; runat=&#8221;server&#8221; AutoPostBack=&#8221;True&#8221; DataSourceID=&#8221;ObjectDataSource1&#8243;              DataTextField=&#8221;desc_language&#8221; DataValueField=&#8221;culture&#8221; /&gt;</font></p>
<p>The needed code for the selectedIndexChanged method:</p>
<p><font color="#ff9900">Protected Sub ddlLanguage_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ddlLanguage.SelectedIndexChanged<br />
&#8216;if the session differs from the value in the ddl, the session-object is changed and the cookie is created<br />
If Not Session(&#8220;MyCulture&#8221;) = ddlLanguage.SelectedValue Then<br />
Session(&#8220;MyCulture&#8221;) = ddlLanguage.SelectedValue<br />
Dim aCookie As New HttpCookie(&#8220;otmData&#8221;)<br />
aCookie.Values(&#8220;languagePref&#8221;) = Session(&#8220;MyCulture&#8221;)<br />
aCookie.Expires = System.DateTime.Now.AddDays(21)<br />
Response.Cookies.Add(aCookie)<br />
End If</font></p>
<p><font color="#ff9900">&#8216;Reload the page<br />
Response.Redirect(Request.Url.ToString)<br />
End Sub</font></p>
<h3><strong><strong>End note:</strong></strong></h3>
<p>All is set now to use resourcefiles for the masterpage and all other pages.<br />
Continue with the <a href="http://vswdtutorialcorner.wordpress.com/2007/10/02/using-localization-in-the-masterpage-and-other-pages-vb-sample-part-2/">second part</a> of the tutorial were you can also download the vb-code.</p>
<h4></h4>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vswdtutorialcorner.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vswdtutorialcorner.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vswdtutorialcorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vswdtutorialcorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vswdtutorialcorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vswdtutorialcorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vswdtutorialcorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vswdtutorialcorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vswdtutorialcorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vswdtutorialcorner.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vswdtutorialcorner.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vswdtutorialcorner.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=4&subd=vswdtutorialcorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vswdtutorialcorner.wordpress.com/2007/09/30/using-localization-in-the-masterpage-vb-sample/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://download.microsoft.com/download/3/6/0/3604c3d2-0db9-4726-910d-b3b8f93a86e4/hilo_localization_final.wmv" length="15715852" type="video/x-ms-wmv" />
	
		<media:content url="http://1.gravatar.com/avatar/ddd291b114513482ba5a2846c8cf372a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">BottOm</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabeling IntelliSense in a Skinfile</title>
		<link>http://vswdtutorialcorner.wordpress.com/2007/09/24/enabeling-intellisense-in-a-skinfile/</link>
		<comments>http://vswdtutorialcorner.wordpress.com/2007/09/24/enabeling-intellisense-in-a-skinfile/#comments</comments>
		<pubDate>Mon, 24 Sep 2007 19:49:18 +0000</pubDate>
		<dc:creator>BottOm</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[IntelliSense]]></category>
		<category><![CDATA[Skinfile]]></category>
		<category><![CDATA[vb]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://vswdtutorialcorner.wordpress.com/2007/09/24/enabeling-intellisense-in-a-skinfile/</guid>
		<description><![CDATA[When working in a skinfile you may have noticed (well, at least I did) that IntelliSense isn&#8217;t working.
I found a workaround googling the net and I also found the reason why IntelliSense isn&#8217;t enabled by default.
The purpose of a skin-file is that you first create your asp-controls on a page. Then to edit them the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=5&subd=vswdtutorialcorner&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When working in a skinfile you may have noticed (well, at least I did) that IntelliSense isn&#8217;t working.<br />
I found a workaround googling the net and I also found the reason why IntelliSense isn&#8217;t enabled by default.</p>
<p>The purpose of a skin-file is that you first create your asp-controls on a page. Then to edit them the way you want and afterwards placing them in a skin-file. The result is that you practically don&#8217;t have to type anything in the skinfile and you can use the control with the same style on different pages.<br />
<span id="more-5"></span></p>
<p>An example:<br />
I first created a label on my homepage.<br />
&lt;asp:Label LabelID=&#8221;Label1&#8243; runat=&#8221;server&#8221; Font-Size=&#8221;Medium&#8221; ForeColor=&#8221;White&#8221; Font-Bold=&#8221;False&#8221; /&gt;<br />
Copy and pasted it in the skinfile, changed LabelID to SkinID and gave it a meaningfull name (menuHeader)<br />
&lt;asp:Label SkinID=&#8221;menuHeader&#8221; runat=&#8221;server&#8221; Font-Size=&#8221;Medium&#8221; ForeColor=&#8221;White&#8221; Font-Bold=&#8221;False&#8221; /&gt;<br />
Back to the page. Add the SkinID to the labels you want the style being applied to.<br />
&lt;asp:Label ID=&#8221;lblLogIn&#8221; runat=&#8221;server&#8221; SkinID=&#8221;menuHeader&#8221; Text=&#8221;Login here&#8221; /&gt;<br />
&lt;asp:Label ID=&#8221;Label1&#8243; runat=&#8221;server&#8221; SkinID=&#8221;menuHeader&#8221; Text=&#8221;Welcome!&#8221; /&gt;</p>
<p>So that&#8217;s it, pretty simple hé?</p>
<p>If you still want to use IntelliSense in a skinfile (which I don&#8217;t really advise) use the following solution:</p>
<ol>
<li>Go to <strong>Tools-&gt;Options</strong> menu.</li>
<li>Pick <strong>Text Editor -&gt; File Extesion</strong>.</li>
<li>Type <em>skin</em> in <strong>Extesion</strong> text box.</li>
<li>Select <em>User Control Editor</em> from <strong>Editor</strong> dropdown.</li>
<li>Click <strong>Add </strong>and then <strong>Ok</strong> to close dialog and re-open your skin files.</li>
</ol>
<p>Source: <a href="http://techphile.blogspot.com/2006/10/enabling-intellisense-in-skin-file-for.html">Techphile Blogspot</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vswdtutorialcorner.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vswdtutorialcorner.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vswdtutorialcorner.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vswdtutorialcorner.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vswdtutorialcorner.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vswdtutorialcorner.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vswdtutorialcorner.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vswdtutorialcorner.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vswdtutorialcorner.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vswdtutorialcorner.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vswdtutorialcorner.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vswdtutorialcorner.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=5&subd=vswdtutorialcorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vswdtutorialcorner.wordpress.com/2007/09/24/enabeling-intellisense-in-a-skinfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddd291b114513482ba5a2846c8cf372a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">BottOm</media:title>
		</media:content>
	</item>
		<item>
		<title>Debugging problems in Windows Vista</title>
		<link>http://vswdtutorialcorner.wordpress.com/2007/09/13/debugging-problems-in-windows-vista/</link>
		<comments>http://vswdtutorialcorner.wordpress.com/2007/09/13/debugging-problems-in-windows-vista/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 14:58:49 +0000</pubDate>
		<dc:creator>BottOm</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugging problems]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Web Developer]]></category>

		<guid isPermaLink="false">http://vswdtutorialcorner.wordpress.com/2007/09/13/debugging-problems-in-windows-vista/</guid>
		<description><![CDATA[When running your version of VSWD as a normal user, debugging won&#8217;t occur.
The only way I found to solve this is by running the program as the Administrator: Rightclick the program and select: &#8220;Run as Administrator..&#8221; in the contextmenu.
For other problems go to this msnd-page: Visual Studio Issues on Windows Vista
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=3&subd=vswdtutorialcorner&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When running your version of VSWD as a normal user, debugging won&#8217;t occur.</p>
<p>The only way I found to solve this is by running the program as the Administrator: Rightclick the program and select: &#8220;Run as Administrator..&#8221; in the contextmenu.</p>
<p>For other problems go to this msnd-page: <a href="http://msdn2.microsoft.com/en-us/vstudio/aa972193.aspx">Visual Studio Issues on Windows Vista</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vswdtutorialcorner.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vswdtutorialcorner.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vswdtutorialcorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vswdtutorialcorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vswdtutorialcorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vswdtutorialcorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vswdtutorialcorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vswdtutorialcorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vswdtutorialcorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vswdtutorialcorner.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vswdtutorialcorner.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vswdtutorialcorner.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=3&subd=vswdtutorialcorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vswdtutorialcorner.wordpress.com/2007/09/13/debugging-problems-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddd291b114513482ba5a2846c8cf372a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">BottOm</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello!</title>
		<link>http://vswdtutorialcorner.wordpress.com/2007/08/21/hello-world/</link>
		<comments>http://vswdtutorialcorner.wordpress.com/2007/08/21/hello-world/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 21:20:21 +0000</pubDate>
		<dc:creator>BottOm</dc:creator>
				<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to my little blog!
Ever needed some help when creating a website in visual studio?
Here I will post several usefull links and add some of my own comments.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=1&subd=vswdtutorialcorner&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Welcome to my little blog!</p>
<p>Ever needed some help when creating a website in visual studio?</p>
<p>Here I will post several usefull links and add some of my own comments.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vswdtutorialcorner.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vswdtutorialcorner.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vswdtutorialcorner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vswdtutorialcorner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vswdtutorialcorner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vswdtutorialcorner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vswdtutorialcorner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vswdtutorialcorner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vswdtutorialcorner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vswdtutorialcorner.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vswdtutorialcorner.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vswdtutorialcorner.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vswdtutorialcorner.wordpress.com&blog=1561602&post=1&subd=vswdtutorialcorner&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://vswdtutorialcorner.wordpress.com/2007/08/21/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ddd291b114513482ba5a2846c8cf372a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">BottOm</media:title>
		</media:content>
	</item>
	</channel>
</rss>