<?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>SUPERNOVA &#187; Technology</title>
	<atom:link href="http://blog.metrostarsystems.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.metrostarsystems.com</link>
	<description>Stellar Social Media &#38; Technology Solutions</description>
	<lastBuildDate>Wed, 01 Sep 2010 22:14:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>New Visual Search!</title>
		<link>http://blog.metrostarsystems.com/2010/09/01/new-visual-search/</link>
		<comments>http://blog.metrostarsystems.com/2010/09/01/new-visual-search/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 22:13:56 +0000</pubDate>
		<dc:creator>Derek Yale</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3871</guid>
		<description><![CDATA[<p style="text-align: left;"><img class="alignleft" title="Visual Search" src="http://blog.metrostarsystems.com/wp-content/themes/fullside/images/VisualSearch.png" alt="Visual Search"/></p>MetroStar Systems has implemented Microsoft's Pivot technology to create a new way to search Supernova: Visually! If you haven't checked it out yet, give it a try by <a href="http://blog.metrostarsystems.com/visual-search/" target="_blank">clicking here</a> and see what catches your eye!]]></description>
			<content:encoded><![CDATA[<a href="http://blog.metrostarsystems.com/visual-search/" target="_blank"><img src="http://blog.metrostarsystems.com/wp-content/themes/fullside/images/VisualSearch.png" border="0" alt="MetroStar Alien" /></a>

<p>MetroStar Systems has implemented Microsoft&#8217;s Pivot technology to create a new way to search Supernova: Visually! If you haven&#8217;t checked it out yet, give it a try by <a href="http://blog.metrostarsystems.com/visual-search/" target="_blank">clicking here</a> and see what catches your eye!</p>

<p>What is Pivot? Put simply, it&#8217;s an interactive navigation system built by Microsoft (on top of Silverlight) to organize vast quantities of data in a way that&#8217;s both fun and easy. To learn more about the product, check out the Pivot website: <a href="http://getpivot.com/" target="_blank">http://getpivot.com/</a></p>

<p>What excites us most about this technology is the variety of ways our posts can be visualized: By Author, Category, Post Date, or even by Tag! This is the kind of navigation that you simply do not get with a traditional archive.</p>

<p>For those of you who are more technically oriented, you can check out Lee Kohn&#8217;s <a href="http://blog.metrostarsystems.com/2010/08/27/injecting-and-running-javascript-in-a-windows-forms-webbrowser-control-2/" target="_blank">earlier blog post</a> to see what code we implemented to get our new visual search up and running.

<p>What are you waiting for? Scroll up and click on the friendly alien to give it a shot!</p>]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/09/01/new-visual-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Injecting and Running Javascript in a Windows.Forms.WebBrowser control</title>
		<link>http://blog.metrostarsystems.com/2010/08/27/injecting-and-running-javascript-in-a-windows-forms-webbrowser-control-2/</link>
		<comments>http://blog.metrostarsystems.com/2010/08/27/injecting-and-running-javascript-in-a-windows-forms-webbrowser-control-2/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 04:01:01 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[WebBrowser]]></category>
		<category><![CDATA[Windows.Forms]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3771</guid>
		<description><![CDATA[Have you ever needed to inject some JavaScript into a web-page contained in a WebBrowser control and then run said code?  If you have then you&#8217;re in luck; here is some sample code which accomplishes exactly that in a console application (the same code works for a WinForms application with a few tweaks): using System;<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
Have you ever needed to inject some JavaScript into a web-page contained in a WebBrowser control and then run said code?  If you have then you&#8217;re in luck; here is some sample code which accomplishes exactly that in a console application (the same code works for a WinForms application with a few tweaks):

<pre class="brush: csharp">using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using mshtml;

namespace JSInjector
{
    class Program
    {
        [STAThread] //needed for COM compatibility
        static void Main(string[] args)
        {
            /*
            this is the javascript which will be injected
            it takes one parameter and returns it multiplied by the number of images in the page
             * */
            const string jsToInject = @&quot;
                function doStuff(foo)
                {
                    return document.images.length * foo;
                }&quot;;

            //create a new WebBrowser and point it to a website
            WebBrowser wb = new WebBrowser();
            wb.Navigate(&quot;http://metrostarsystems.com&quot;);

            byte loopCount = 0; //we wouldn't want an infinit loop would we?
            while (wb.ReadyState != WebBrowserReadyState.Complete)
            {
                if (loopCount &gt; 200)
                    throw new Exception(&quot;Page did not load after 20 seconds!&quot;);

                Application.DoEvents(); //needed by the WebBrowser so that events are processed

                Thread.Sleep(100); //if the page hasn't finished loading wait 1/10 of a second
                loopCount++;
            }

            HtmlElement scriptEle = wb.Document.CreateElement(&quot;script&quot;); //create the script element
            scriptEle.SetAttribute(&quot;type&quot;, &quot;text/javascript&quot;);

            /*
             Load the javascript into the script element.
             The type casting is necessary since the HtmlElement will not let you set the innerHtml or innerText of a script element
             Note: You must have a reference to the MSHTML (Microsoft HTML Object Library) COM dll in order to do the typecasting
             */
            ((IHTMLScriptElement)scriptEle.DomElement).text = jsToInject;

            wb.Document.Body.AppendChild(scriptEle); //add the script element to the page

            int jsParam = 5; //5 will be the parameter passed in to the JS function
            object returnedFromJs = wb.Document.InvokeScript(&quot;doStuff&quot;, new object[] { jsParam} ); //call the doStuff JS function with 5 as the argument and store the result

            Console.WriteLine(&quot;Returned &quot; + returnedFromJs);
        }
    }
}
</pre>

To see this code in action check out our new visual search <a href="/visual-search/">here</a>!

-Lee]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/08/27/injecting-and-running-javascript-in-a-windows-forms-webbrowser-control-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CMS Decision Tree (Joomla vs. Drupal vs. Sharepoint)</title>
		<link>http://blog.metrostarsystems.com/2010/08/19/cms-decision-tree-joomla-vs-drupal-vs-sharepoint/</link>
		<comments>http://blog.metrostarsystems.com/2010/08/19/cms-decision-tree-joomla-vs-drupal-vs-sharepoint/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:23:20 +0000</pubDate>
		<dc:creator>Gerald Irish</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[decision tree]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3417</guid>
		<description><![CDATA[About to embark on an enterprise content management project and haven&#8217;t yet chosen which product to use?  You are in luck because I have compiled a handy decision tree to help you decide.  This is version 1.0, hopefully domain-experts in Drupal and Joomla can help me flesh this out a little more.  I&#8217;ll also probably<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
About to embark on an enterprise content management project and haven&#8217;t yet chosen which product to use?  You are in luck because I have compiled a handy decision tree to help you decide.  This is version 1.0, hopefully domain-experts in Drupal and Joomla can help me flesh this out a little more.  I&#8217;ll also probably make a version based on the feature set of Sharepoint 2010 at some point.

<a href="http://www.geraldirish.com/images/CMSDecisionTree.png"><img class="alignnone" src="http://www.geraldirish.com/images/CMSDecisionTree.png" alt="Joomla/Drupal/Sharepoint Decision Tree" width="480" height="488" /></a>]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/08/19/cms-decision-tree-joomla-vs-drupal-vs-sharepoint/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Adobe Captivate™ 4 Error with Windows 7™, 64 bit</title>
		<link>http://blog.metrostarsystems.com/2010/08/12/adobe-captivate-4-error-with-windows-7-64-bit/</link>
		<comments>http://blog.metrostarsystems.com/2010/08/12/adobe-captivate-4-error-with-windows-7-64-bit/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 13:15:27 +0000</pubDate>
		<dc:creator>John Foley</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Adobe Captivate]]></category>
		<category><![CDATA[Error 42001]]></category>
		<category><![CDATA[Failure To Import Audio Stream]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3245</guid>
		<description><![CDATA[I just installed Adobe Captivate 4 on my Windows 7, 64 bit machine.  The install went smoothly, meaning the progress glided towards the right without changing pace. The first error arose when I attempted to create a software simulation with Captivate.   After I completed the recording, I received the error message “Failure to copy audio<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
I just installed Adobe Captivate 4 on my Windows 7, 64 bit machine.  The install went smoothly, meaning the progress glided towards the right without changing pace.

The first error arose when I attempted to create a software simulation with Captivate.   After I completed the recording, I received the error message “Failure to copy audio stream.”  The second error occurred after I tried to publish a learning module to directly Adobe Connect™ from Captivate 4. The message was “error 42001”.

After some research I found that Adobe applications and a 64 bit operating systems do not play well together and need some coaxing to get along.  As I continued to read more about these errors I learned that Windows’ 64 bit machines do have a command line process to fix many of these types of issues.   Below are the methods that I used to overcome the errors I discovered with Adobe Captivate 4.
<p style="font-family: Courier New, Courier, mono; color: #0000ff; font-size: medium;"><strong>Error “Failure To Import Audio Stream”</strong></p>
To resolve this error complete the following:
<ol>
	<li>Open the command prompt application
<ol>
	<li>I do this by typing <strong>cmd</strong> in the “Run…” text box</li>
	<li>Navigate to the directory where Adobe Captivate 4 is installed
<ol>
	<li>For me it is located here, [<strong>C:\Program Files (X84)\Adobe\Adobe Captivate 4</strong>]</li>
	<li>Once  you’re in the directory type “regsvr32 NSaudio.dll” and press Enter</li>
</ol>
</li>
</ol>
</li>
</ol>
I also noticed that this .dll file exists in some of my other Adobe application folders.
<h2 style="font-family: Courier New, Courier, mono; color: #0000ff; font-size: medium; font-weight: normal;"><strong>Error 42001</strong></h2>
This error was not as easy as the Audio Stream Error but follows along the same issue of a 32 bit application running a 64 bit operating system.

To resolve this error I competed the following:
<ol>
	<li>Open the command prompt application</li>
	<li>Navigate to the [c:\windows\sysWOW64 directory]</li>
	<li>Once you’re in the directory type “regsvr32 c:\&#8230;\Adobe Captivate 4\PpsUplo.dll” and press enter</li>
</ol>
Other blogs and forums had state that uninstalling Presenter 7 and then re-installing it may also correct this issue. I did this but it did not initially resolve the issue.  Using the command prompt is less intrusive on your system than uninstalling and re-installing an application.]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/08/12/adobe-captivate-4-error-with-windows-7-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing the SharePoint 2010 Ribbon UI</title>
		<link>http://blog.metrostarsystems.com/2010/06/21/customizing-the-sharepoint-2010-ribbon-ui/</link>
		<comments>http://blog.metrostarsystems.com/2010/06/21/customizing-the-sharepoint-2010-ribbon-ui/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 18:53:28 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ribbon UI]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3112</guid>
		<description><![CDATA[Here are some handy links if you are interested in customizing SharePoint 2010&#8242;s ribbon UI: http://sharepointegg.blogspot.com/2010/02/remove-button-from-ribbon-in-sharepoint.html http://msdn.microsoft.com/en-us/library/ff407290.aspx Also if you need to find the IDs/Locations etc&#8230; of existing elements in the ribbon you can find them in this file: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\GLOBAL\XML\CMDUI.xml -Lee]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
Here are some handy links if you are interested in customizing SharePoint 2010&#8242;s ribbon UI:

<a href="http://sharepointegg.blogspot.com/2010/02/remove-button-from-ribbon-in-sharepoint.html">http://sharepointegg.blogspot.com/2010/02/remove-button-from-ribbon-in-sharepoint.html</a>

<a href="http://msdn.microsoft.com/en-us/library/ff407290.aspx">http://msdn.microsoft.com/en-us/library/ff407290.aspx</a>

Also if you need to find the IDs/Locations etc&#8230; of existing elements in the ribbon you can find them in this file:

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\GLOBAL\XML\CMDUI.xml

-Lee]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/06/21/customizing-the-sharepoint-2010-ribbon-ui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating SharePoint Solutions from 2007 to 2010</title>
		<link>http://blog.metrostarsystems.com/2010/06/21/migrating-sharepoint-solutions-from-2007-to-2010/</link>
		<comments>http://blog.metrostarsystems.com/2010/06/21/migrating-sharepoint-solutions-from-2007-to-2010/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 17:25:01 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[migrating]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3109</guid>
		<description><![CDATA[Today I had the pleasure of taking a SharePoint solution which had been built against 2007 and migrating it to 2010.  The whole process went much smoother than I had originally thought although I did learn a couple of things: Anything stored in the session state must be marked as serializable This was simply an oversight in<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
Today I had the pleasure of taking a SharePoint solution which had been built against 2007 and migrating it to 2010.  The whole process went much smoother than I had originally thought although I did learn a couple of things:

<strong>Anything stored in the session state must be marked as serializable</strong>

<strong> </strong>This was simply an oversight in the 2007 version which didn&#8217;t complain about my structs not being marked serializable, however SharePoint 2010 will error out.

<strong>The InputFormTextBox control now requires a stylesheet from SharePoint</strong>

In SharePoint 2007 you could embed InputFormTextBox controls into your custom ASPX pages and the only dependency the control had where the core.js and init.js files (located in _layouts).  In SharePoint 2010 you now need to include the /_layouts/1033/styles/themable/forms.css file in order for the control to appear correctly.

<strong>The Microsoft.SharePoint DLL has moved</strong>

Since SharePoint is now on version 14 the Microsoft.SharePoint DLL is now located in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\<strong>14</strong>\ISAPI.  This is just a minor change to the reference but may cause some annoyance to developers who are targeting both versions of SharePoint. (Note that once the solution is built it can be used for both versions of SharePoint, the difference in location won&#8217;t matter)

-Lee]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/06/21/migrating-sharepoint-solutions-from-2007-to-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Best Practices: People Editor acting buggy in IE8</title>
		<link>http://blog.metrostarsystems.com/2010/05/14/sharepoint-best-practices-people-editor-acting-buggy-in-ie8/</link>
		<comments>http://blog.metrostarsystems.com/2010/05/14/sharepoint-best-practices-people-editor-acting-buggy-in-ie8/#comments</comments>
		<pubDate>Fri, 14 May 2010 14:58:17 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA["Sharepoint Best Practices"]]></category>
		<category><![CDATA[compatability]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Sharepoint people editor]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2833</guid>
		<description><![CDATA[Yesterday I was testing an ASP .Net page within SharePoint which contained a SharePoint People Editor control which was acting rather &#8216;strange&#8217;.  It would render in an odd kind of way and removing a person from the control would cause the entire text box to be removed from the DOM! I was convinced that there<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
<p style="text-align: center;"><img class="size-full wp-image-2841 aligncenter" title="microsoft-office-sharepoint-logo" src="http://blog.metrostarsystems.com/wp-content/uploads/2010/05/microsoft-office-sharepoint-logo.jpg" alt="" width="327" height="71" /></p>
Yesterday I was testing an ASP .Net page within SharePoint which contained a SharePoint People Editor control which was acting rather &#8216;strange&#8217;.  It would render in an odd kind of way and removing a person from the control would cause the entire text box to be removed from the DOM!

I was convinced that there was something on the page that was interfering with the People Editor such as some JavaScript or something with a duplicate id.  Even after removing everything from the page minus the CSS link it would still not work correctly.  Exasperated I decided to click the IE 8 &#8216;compatibility mode&#8217; button which forces IE8 to use IE7&#8242;s rules for rendering, which caused the People Editor to start working.

So if you ever run into an issue like this try embedding a meta tag in the head of you page to tell IE8 to use its compatibility mode:

<strong>&lt;meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=EmulateIE7&#8243; /&gt;</strong>

I hope this helps. Let me know if you have any questions or comments. Thanks.

-Lee Kohn]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/05/14/sharepoint-best-practices-people-editor-acting-buggy-in-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Best Practices: Form Digest in ASP .Net Pages within SharePoint</title>
		<link>http://blog.metrostarsystems.com/2010/04/08/sharepoint-best-practices-form-digest-in-asp-net-pages-within-sharepoint/</link>
		<comments>http://blog.metrostarsystems.com/2010/04/08/sharepoint-best-practices-form-digest-in-asp-net-pages-within-sharepoint/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:00:51 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[ASP .Net]]></category>
		<category><![CDATA[Form Digest]]></category>
		<category><![CDATA[Security Validation]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2723</guid>
		<description><![CDATA[If you ever find yourself modifying data within SharePoint using custom ASP .Net pages, you will undoubtedly have run into errors regarding the pages security validation being invalid.  Rather than disabling security validation, which can leave your pages open to XSS attacks, follow the recommendations in the following blog post regarding using the FormDigest tag<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
<img class="aligncenter size-medium wp-image-2841" title="microsoft-office-sharepoint-logo" src="http://blog.metrostarsystems.com/wp-content/uploads/2010/05/microsoft-office-sharepoint-logo-300x65.jpg" alt="" width="300" height="65" />

If you ever find yourself modifying data within <strong>SharePoint</strong> using custom ASP .Net pages, you will undoubtedly have run into errors regarding the pages security validation being invalid.  Rather than disabling security validation, which can leave your pages open to XSS attacks, follow the recommendations in the following blog post regarding using the <em>FormDigest</em> tag to safely validate post backs.

<a href="http://epham.wordpress.com/2007/01/22/how-to-fix-security-validation-errors-in-sharepoint-aspnet-page/">http://epham.wordpress.com/2007/01/22/how-to-fix-security-validation-errors-in-sharepoint-aspnet-page/</a>

-Lee]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/04/08/sharepoint-best-practices-form-digest-in-asp-net-pages-within-sharepoint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>In Depth interview on Federal News Radio</title>
		<link>http://blog.metrostarsystems.com/2010/04/02/in-depth-interview-on-federal-news-radio/</link>
		<comments>http://blog.metrostarsystems.com/2010/04/02/in-depth-interview-on-federal-news-radio/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 14:43:49 +0000</pubDate>
		<dc:creator>Jenni Hubacher</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ali Manouchehri]]></category>
		<category><![CDATA[Federal News Radio]]></category>
		<category><![CDATA[Francis Rose]]></category>
		<category><![CDATA[interviews]]></category>
		<category><![CDATA[Manouchehri]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2708</guid>
		<description><![CDATA[Our CEO, Ali Manouchehri, was recently interviewed on Federal News Radio (1500 AM).  He was featured on Francis Rose&#8216;s &#8220;In Depth&#8220; show that airs Monday-Friday from 1pm-3pm.  The interview was part of Mr. Rose&#8217;s &#8220;Industry Chatter&#8221; series and they discussed President Obama&#8217;s memo on Transparency and Open Government (pdf), the Open Government directive that followed,<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
<div id="attachment_2707" class="wp-caption aligncenter" style="width: 496px"><a href="http://www.federalnewsradio.com/?nid=17&amp;sid=1925310"><img class="size-full wp-image-2707" title="1500am" src="http://blog.metrostarsystems.com/wp-content/uploads/2010/04/1500am.jpg" alt="" width="486" height="508" /></a><p class="wp-caption-text">http://www.federalnewsradio.com/</p></div>
<p style="text-align: center;"></p>
<p style="text-align: left;">Our CEO, <strong>Ali Manouchehri</strong>, was recently interviewed on Federal News Radio (1500 AM).  He was featured on <a href="http://www.federalnewsradio.com/?nid=16" target="_blank"><strong>Francis Rose</strong>&#8216;s &#8220;<em>In Depth</em>&#8220;</a> show that airs Monday-Friday from 1pm-3pm.  The interview was part of Mr. Rose&#8217;s &#8220;<em>Industry Chatter</em>&#8221; series and they discussed President Obama&#8217;s memo on <a href="http://www.eda.gov/PDF/Memo_PresidentObama_FOIA.pdf" target="_blank"><em>Transparency and Open Government</em></a> (pdf), the <a href="http://www.whitehouse.gov/open/documents/open-government-directive" target="_blank">Open Government directive</a> that followed, as well as issues dealing with collaboration, participation and security.</p>
<p style="text-align: left;">You can listen to or download the interview here: <a href="http://www.federalnewsradio.com/?nid=17&amp;sid=1925310" target="_blank">http://www.federalnewsradio.com/?nid=17&amp;sid=1925310</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/04/02/in-depth-interview-on-federal-news-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MetroStar Systems Launches Votridea Contest Platform to Meet Open Government Directive</title>
		<link>http://blog.metrostarsystems.com/2010/03/25/metrostar-systems-launches-votridea-contest-platform-to-meet-open-government-directive/</link>
		<comments>http://blog.metrostarsystems.com/2010/03/25/metrostar-systems-launches-votridea-contest-platform-to-meet-open-government-directive/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 13:45:41 +0000</pubDate>
		<dc:creator>Daniel Nguyen</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[contest platform]]></category>
		<category><![CDATA[press release]]></category>
		<category><![CDATA[video contest]]></category>
		<category><![CDATA[Votridea]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2681</guid>
		<description><![CDATA[Press Release: Government Ready Contest Solution Enables Social Media Community Growth and Engagement RESTON, VA, March 24 /PRNewswire/ &#8211; MetroStar Systems, a leader in full-service information technology (IT) and strategies for new media and social networks, today announced the launch of its new contest platform, Votridea, which is optimized for government use. Votridea fosters innovation<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
<strong>Press Release: </strong><strong>Government Ready Contest Solution Enables Social Media Community Growth and Engagement</strong>

<strong>RESTON, VA, March 24</strong> /<a href="http://www.prnewswire.com/news-releases/metrostar-systems-launches-votridea-contest-platform-to-meet-open-government-directive-88995407.html" target="_blank">PRNewswire</a>/ &#8211;<strong> </strong>MetroStar Systems<strong>,</strong> a leader in full-service information technology (IT) and strategies for new media and social networks, today announced the launch of its new contest platform, <strong>Votridea</strong>, which is optimized for government use. Votridea fosters innovation by engaging and managing large communities in social networks. The contest platform is designed to foster challenges and capture ideas with proven community management tools.

On March 8, 2010, Federal Chief Performance Officer Jeffrey Zients released a memorandum outlining, &#8220;<a href="http://www.whitehouse.gov/omb/assets/memoranda_2010/m10-11.pdf" target="_blank">Guidance on the Use of Challenges and Prizes to Promote Open Government</a>&#8220;.  This memorandum was in direct support of the Obama Administration&#8217;s commitment to open government, and how it can help drive innovation and other national priorities. The memorandum states, &#8220;The Administration believes that prizes and challenges have a number of potential benefits…they may allow the government to…highlight excellence in a particular domain of human endeavor to motivate, inspire and guide others…[to] further a federal agency&#8217;s mission by attracting more interest and attention to a defined program, activity or issue of concern…&#8221; Votridea fully complies within these guidelines and the newly released DOD Social Media Policy, allowing agencies to engage and expand their communities.

&#8220;MetroStar has proven performance in creating and managing contests to help drive government innovation and grow cultural awareness,&#8221; said Ali Reza Manouchehri, Founder and CEO of MetroStar Systems. &#8220;We&#8217;ve just completed the Department of State&#8217;s second <a onclick="var s=s_gi(s_account);s.linkTrackVars='prop5,eVar3,prop15';s.prop5='External Link';s.eVar3=s.prop5;s.prop15='88995407';s.tl(this,'o','ExternalLink');" href="http://connectcontest.state.gov/" target="_blank">ExchangesConnect Video Contest</a>. Participants responded to the theme, &#8216;Change Your Climate, Change Our World.&#8217; Votridea allows us to utilize our experience and lessons learned to help government drive innovation and public participation, creating the best possible platform and support for our customer.&#8221;

The Votridea Contest Platform seamlessly integrates with popular Web 2.0 tools such as Facebook, Twitter and Ning to catalyze rapid and scalable participant growth. The platform is scalable supporting agency communities, allowing agencies to target focus their contest within a small group or extend to a global reach. Votridea offers a Community Management Dashboard that allows even computer novices to manage the quality and quantity of participant contributions. Votridea supports text, photos and video to encourage participation in the selected medium of agency or contestant choice. For additional product information, please contact Johnny Nguyen (<a onclick="var s=s_gi(s_account);s.linkTrackVars='prop5,eVar3,prop15';s.prop5='External Link';s.eVar3=s.prop5;s.prop15='88995407';s.tl(this,'o','ExternalLink');" href="mailto:jnguyen@metrostarsystems.com" target="_blank">jnguyen@metrostarsystems.com</a>) or <a href="http://twitter.com/MetroStarSystem" target="_blank">@metrostarsystem</a> on Twitter.

To learn more about <strong>Votridea</strong>, please visit <a onclick="var s=s_gi(s_account);s.linkTrackVars='prop5,eVar3,prop15';s.prop5='External Link';s.eVar3=s.prop5;s.prop15='88995407';s.tl(this,'o','ExternalLink');" href="http://www.metrostarsystems.com/socialtoolbox/" target="_blank">http://www.metrostarsystems.com/socialtoolbox/</a>]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/03/25/metrostar-systems-launches-votridea-contest-platform-to-meet-open-government-directive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
