<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Coffeehouse - system() but for ASP</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Coffeehouse - system() but for ASP</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 13:46:29 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 13:46:29 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>4</c9:totalResults>
	<c9:pageCount>-4</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Coffeehouse - system() but for ASP</title>
		<description><![CDATA[<p><font>Hello,<br>
<br>
php has a function called system where you can call system commands and executables, for example&nbsp;system('uptime')<br>
<br>
<br>
Is there something like that for ASP? I'd like to show the output of the 'uptime -a' on windows 2003 server in a webpage.</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/977#977</link>
		<pubDate>Thu, 08 Apr 2004 10:45:23 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/977#977</guid>
		<dc:creator>RedShift</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/RedShift/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - system() but for ASP</title>
		<description><![CDATA[<p>System.Diagnostics has process-handling classes that let you deal with outside executables.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/d1f61fc888994bd08f979dea01115d8a#d1f61fc888994bd08f979dea01115d8a</link>
		<pubDate>Thu, 08 Apr 2004 22:12:30 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/d1f61fc888994bd08f979dea01115d8a#d1f61fc888994bd08f979dea01115d8a</guid>
		<dc:creator>dalangalma</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/dalangalma/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - system() but for ASP</title>
		<description><![CDATA[<p>That seems like an odd place for it.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/f689630ee017445298fb9dea01115db7#f689630ee017445298fb9dea01115db7</link>
		<pubDate>Thu, 08 Apr 2004 22:17:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/f689630ee017445298fb9dea01115db7#f689630ee017445298fb9dea01115db7</guid>
		<dc:creator>object88</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/object88/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - system() but for ASP</title>
		<description><![CDATA[<p>Something like this is how you would use it in C# (implies ASP.NET, not plain ASP). You'll need to add using lines for System.Diagnostics and System.IO, too:<br>
<br>
Process&nbsp;proc = new Process();<br>
proc.StartInfo.FileName = &quot;uptime.exe&quot;;<br>
proc.StartInfo.Arguments = &quot;-a&quot;;<br>
proc.StartInfo.UseShellExecute = false;<br>
proc.StartInfo.RedirectStandardOutput = true;<br>
</p>
<p>proc.Start();</p>
<p>StreamReader sw = proc.StandardOutput;<br>
string myString = sw.ReadToEnd();<br>
proc.Close();<br>
<br>
</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/fd82d4a2c8854c35946d9dea01115de7#fd82d4a2c8854c35946d9dea01115de7</link>
		<pubDate>Thu, 08 Apr 2004 23:23:43 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/977-system-but-for-ASP/fd82d4a2c8854c35946d9dea01115de7#fd82d4a2c8854c35946d9dea01115de7</guid>
		<dc:creator>TommyW</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/TommyW/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>