<?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>VIT Blog</title>
	<atom:link href="http://blog.v-i.us/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.v-i.us</link>
	<description>Visual Impact Tech. Inc. Blog</description>
	<lastBuildDate>Thu, 04 Mar 2010 20:21:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pop Up Window refresh parent</title>
		<link>http://blog.v-i.us/html/pop-up-window-refresh-parent/</link>
		<comments>http://blog.v-i.us/html/pop-up-window-refresh-parent/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:21:28 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=112</guid>
		<description><![CDATA[If you have a script that opens up a new window using JavaScript: window.open()
on the child window, if you want to close the window and refresh the parent window, use the following code:
window.close();
if (window.opener &#38;&#38; !window.opener.closed) {
    window.opener.location.reload();
}
]]></description>
		<wfw:commentRss>http://blog.v-i.us/html/pop-up-window-refresh-parent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitefinity Custom Download List</title>
		<link>http://blog.v-i.us/dotnet/sitefinity-custom-download-list/</link>
		<comments>http://blog.v-i.us/dotnet/sitefinity-custom-download-list/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 22:30:40 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=106</guid>
		<description><![CDATA[Problem: create a file-download-list that you can filter by tag, category, or other criteria
Solution:

create a library and upload your files to it
categories and/or tag the files the way you want them to be filtered
download the following sample code from the Telerik team:
http://www.sitefinity.com/ClientsFiles/143126_customdownloadlist.zip
(for more information on this download refer to Telerik&#8217;s forum)
add the following customizations to [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/dotnet/sitefinity-custom-download-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix ASP.net menu in Safari and Chrome</title>
		<link>http://blog.v-i.us/dotnet/fix-asp-net-menu-in-safari-and-chrome/</link>
		<comments>http://blog.v-i.us/dotnet/fix-asp-net-menu-in-safari-and-chrome/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:14:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=104</guid>
		<description><![CDATA[If you use the standard ASP.NET menu (or toolbar) in your web application, it works well in most browsers except for Safari &#38; Chrome. In these 2 browsers, each menu item appears on a new line.
The fix I found was placing the following code in my MaterPage code-behind:
if (Request.UserAgent.IndexOf(&#8220;AppleWebKit&#8221;) &#62; 0)
        {
            Request.Browser.Adapters.Clear();
        }
If you [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/dotnet/fix-asp-net-menu-in-safari-and-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight on IIS 6</title>
		<link>http://blog.v-i.us/dotnet/silverlight-on-iis-6/</link>
		<comments>http://blog.v-i.us/dotnet/silverlight-on-iis-6/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 17:35:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=102</guid>
		<description><![CDATA[In order to host a Silverlight application on IIS6 you will need to add a MIME type

Open IIS, right-click and select properties for the Silverlight site.
Select the tab for HTTP Headers
Click on MIME Types
Click New and add Extension= .xaml and Mime Type= application/xaml+xml
Depending on the features used in your Silverlight app, you might also need [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/dotnet/silverlight-on-iis-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Exchange Accounts in Outlook</title>
		<link>http://blog.v-i.us/servers/multiple-exchange-accounts-in-outlook/</link>
		<comments>http://blog.v-i.us/servers/multiple-exchange-accounts-in-outlook/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 19:39:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=100</guid>
		<description><![CDATA[I needed to connect to 2 accounts on the Exchange Server from my Outlook 2007. When I tried to add a second account, an error message said it is not supported.
I understand that the upcoming Outlook 10 will have this support built in. In the meantime, I found this article from Microsoft: http://support.microsoft.com/kb/291626 
It describes how [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/servers/multiple-exchange-accounts-in-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook 2007 keeps asking for Password on Exchange 2007</title>
		<link>http://blog.v-i.us/servers/outlook-2007-keeps-asking-for-password-on-exchange-2007/</link>
		<comments>http://blog.v-i.us/servers/outlook-2007-keeps-asking-for-password-on-exchange-2007/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 01:16:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=98</guid>
		<description><![CDATA[I have a new installation of Outlook 2007 on Windows 7 connecting to Exchange 2007. The client is not in the domain of the Exchange server. I found 2 fixes online, together they fixed the problem.

Close Outlook
Delete any network passwords saved for the exchange server (in Windows 7 click Start and type Network Passwords, click [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/servers/outlook-2007-keeps-asking-for-password-on-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UltraWebGrid Cell and CellItem</title>
		<link>http://blog.v-i.us/dotnet/ultrawebgrid-cell-and-cellitem/</link>
		<comments>http://blog.v-i.us/dotnet/ultrawebgrid-cell-and-cellitem/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 18:04:39 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[CellItem]]></category>
		<category><![CDATA[Infragistics]]></category>
		<category><![CDATA[TemplatedColumn]]></category>
		<category><![CDATA[UltraGridCell]]></category>
		<category><![CDATA[UltraWebGrid]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/dotnet/ultrawebgrid-cell-and-cellitem/</guid>
		<description><![CDATA[if you have an UltraWebGrid with a TemplatedColumn, the TemplatedColumn has a checkbox or any other control. If you want to access the control inside that column here’s what you need to do:

assuming you have a loop cycling through the rows 
Dim rw As UltraWebGrid.UltraGridRow = UltraWebGrid1.DisplayLayout.Rows(i) 
Dim cl As UltraWebGrid.UltraGridCell = rw.Cells.FromKey(&#34;myColumnName&#34;) 
Dim col [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/dotnet/ultrawebgrid-cell-and-cellitem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS float keep element inside DIV</title>
		<link>http://blog.v-i.us/html/css-contain-float/</link>
		<comments>http://blog.v-i.us/html/css-contain-float/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 19:25:20 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[img]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=92</guid>
		<description><![CDATA[If you have come across the problem of containing floats, then there&#8217;s a simple fix to your problem. Typical scenario, you have an img tag (image) inside a div tag. The img is set to float (left of right), and the div tag is not big enough to contain all the img, so the img [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/html/css-contain-float/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cell padding problem with older browsers</title>
		<link>http://blog.v-i.us/html/cell-padding-problem-with-older-browsers/</link>
		<comments>http://blog.v-i.us/html/cell-padding-problem-with-older-browsers/#comments</comments>
		<pubDate>Wed, 27 May 2009 16:59:17 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=91</guid>
		<description><![CDATA[I came across this problem with older browsers. If your table cell uses percentage for padding, for example:
&#60;td style=”padding-right:1%”&#62;text&#60;/td&#62;
then that cell will expand off the screen. 
Instead, use pixels for measurement, for example:
&#60;td style=”padding-right:15px”&#62;text&#60;/td&#62;
]]></description>
		<wfw:commentRss>http://blog.v-i.us/html/cell-padding-problem-with-older-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload file timeout</title>
		<link>http://blog.v-i.us/dotnet/upload-file-timeout/</link>
		<comments>http://blog.v-i.us/dotnet/upload-file-timeout/#comments</comments>
		<pubDate>Tue, 26 May 2009 17:05:45 +0000</pubDate>
		<dc:creator>shadi</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[timeout]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://blog.v-i.us/?p=90</guid>
		<description><![CDATA[if your webpage submits a file for uploading, and the page returns an error on larger file sizes, then look for 2 attributes to modify in your web.config .
open you web.config file and seach for the following line:
&#60;httpRuntime executionTimeout=&#34;480&#34; maxRequestLength=&#34;7168&#34;/&#62;
executionTimeout is the time limit before the request timesout and you get an error, this figure [...]]]></description>
		<wfw:commentRss>http://blog.v-i.us/dotnet/upload-file-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
